外发队列
{{index .statCounts "pending"}}
待发送
{{index .statCounts "deferred"}}
等待重试
{{index .statCounts "sent"}}
已送达
{{index .statCounts "failed"}}
失败
| ID | 发件人 | 收件人 | 状态 | 尝试次数 | 下次重试 | 最后响应 / 错误 | 创建时间 | 操作 |
|---|---|---|---|---|---|---|---|---|
| {{.ID}} | {{.FromAddr}} | {{.ToAddr}} | {{if eq .Status "pending"}}{{call $.statusText .Status}} {{else if eq .Status "deferred"}}{{call $.statusText .Status}} {{else if eq .Status "sent"}}{{call $.statusText .Status}} {{else if eq .Status "failed"}}{{call $.statusText .Status}} {{else}}{{call $.statusText .Status}}{{end}} | {{.Attempts}} | {{if or (eq .Status "pending") (eq .Status "deferred")}}{{.NextAttemptAt.Format "2006-01-02 15:04"}}{{else}}—{{end}} | {{if .LastResponse}}{{.LastResponse}}{{else}}{{.LastError}}{{end}} | {{.CreatedAt.Format "2006-01-02 15:04"}} | {{if or (eq .Status "failed") (eq .Status "deferred") (eq .Status "canceled") (eq .Status "pending")}} {{end}} {{if or (eq .Status "pending") (eq .Status "deferred")}} {{end}} |
| 队列为空 | ||||||||