Reputation: 2028
I use go-mail library to send emails with smtp. But I faced common issue that sent emails won't appear in sent folder. Googling I found that the only way to solve it is to upload sent email though imap.
The question is how do I obtain copy of sent email with smtp email?
Upvotes: 1
Views: 1311
Reputation: 2028
We've implemented the following approach and it works for us:
Upvotes: 1
Reputation: 123531
The question is how do I obtain copy of sent email with smtp email?
You can't. SMTP is just for delivering mail. There is no concept of users mailboxes and specifically the Sent folder within SMTP.
Upvotes: 0