How to determine the smtp server save send mails or not?

2.7k views Asked by At

When sending mail using SMTP server, how to determine whether the smtp server rely and save send mails to "Sent" folder or not.

Example

When sending mail using GMail smtp server ( smtp.gmail.com ), GMail server automatically rely and save the mail to "Sent" folder. But few other server like Exchange, GoDaddy,.. these are the servers not saving the mail to "Sent" folder. We have to manually append the message to respective folder using IMAP append command.

If I able to find whether the server won't save send mails to "Sent" folder means, I can invoke IMAP append command to save the mail to "Sent" folder

1

There are 1 answers

3
arnt On

You cannot find that out. But you can make gmail and godaddy behave almost compatibly by sending a Bcc to the user. Gmail does that automatically, but if you do it explicitly the user still gets only one copy.

When you send mail via SMTP, add "rcpt to:<[email protected]>", and both gmail and godaddy will write the message to some filter. If you're lucky the message is even in the right folder.