Skip to content

Commit f1746e6

Browse files
authored
fix: change envelope address to FetchEmail (actual email address) (#449)
1 parent 62995ac commit f1746e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sender/sender.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ func SendEmail(account *config.Account, to, cc, bcc []string, subject, plainBody
694694
}
695695

696696
// Send Envelope
697-
if err = c.Mail(account.Email); err != nil {
697+
if err = c.Mail(account.FetchEmail); err != nil {
698698
return err
699699
}
700700
for _, r := range allRecipients {

0 commit comments

Comments
 (0)