How to configure SMTP to save send mails? - smtp

can you please tell me how to configure SMTP to save send mails in Sent Items folder of my Mail.
NOTE: I am using yahoo mail credentials to send mails.

That is not possible using SMTP only.
SMTP is just for message delivery, it has no knowledge of your inbox and its folders tructure.
When you send a mail using your mail client (Outlook, phone, gmail, etc), it will :
use SMTP to send your mail
then use a different protocol (usually IMAP or MAPI) to move the message to your "Sent items" folder.
There are some exceptions : some mail providers will automatically copy to your sent items all messages sent by your account through their SMTP server. I believe gmail does that. that's not as easy as you maythink, since one must ensure the message is not ciped twice (once by the email client, another one by the SMTP server).

Related

Zabbix email configuration

Our zabbix server is not sending e-mail notifications to the user through e-mail.
SMTP is configured and working fine. From server backend, I am able to send and deliver mail. Have created item and trigger also but mails are not being sent yet.
Any help on this.

SQL Server 2008 database mail using YANDEX

I am trying to send mail with my yandex mail account on database mail. Actually it was working for a long time. Last 1 month I cannot send mail with my yandex account. Always it gives that error message,
Error,16492,The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 10 (2014-11-08T17:20:25). Exception Message: Cannot send mails to mail server. (time out ).
The mail account works with Microsoft Outlook, but it does not work with database mail. I am also using SSL secure connection. Which is in the configuration of database mail account?
Thank you.
It's a late response but it is a true solution.
With Yandex kindly use SSL port number 587 instead of 465.
Screenshot Yandex IMAP settings
Also add IMAP settings, SMTP does not work without it

Setting up SMTP mail server. Done with installing SMTP. Now what?

I want to host my own mailserver using my own domain. So far I can see that SMTP needs to be installed and the DNS record has to be modified to point to my mailserver. So far so good. But what about mailaccounts? How do I create mail#mydomain.com with username and password so I can start receiving emails in outlook?
What more does it take to be able to receive mails in outlook now that im done with installing SMTP on my server?
Installing just the smtp service isn't going to get you what you need. In order for users to get their mail you'd need a pop server, or an IMAP server or and exchange server.
What you need is a seperate mail hosting package. Something like Imail from Ipswitch. Or exchange from Microsoft.
SMTP is simply a mail transfer mechanism, it will receive emails for remote SMTP servers and then try an deliver them. It does not handle mailboxes or email accounts, for this you will need a POP3, IMAP or Exchange server.

Gmail does not list sent items if mail sent from custom smtp server

We have our own company's smtp server.
When we send mails using the above smtp server, the mails do not list in the gmail's sent items.
The mail is sent using asp.net
What can be done?
Instead of using your own SMTP server, use the SMTP server from GMail. How else can Gmail know that you have send an email.
You have to supply credentials to use Google's SMTP server, so you must store the user's username and password (from Gmail).

Mails Sent via SMTP should get reflected in the Sent folder on the Email Server too? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 9 years ago.
Improve this question
When using SMTP to send mails (email client or via a script), mails are normally not seen in the Sent folder on the email provider's server.
But it does get reflected in the Sent folders of Gmail (Google Apps).
Isn't it mandatory to save the mail in the Sent folder of the server too ?
I consider Sent mails as my log for mails sent automatically.
Usually, an e-mail client such as Microsoft Outlook will receive messages via IMAP4 and send messages via SMTP.
I am unaware of many mail servers that automatically save mail sent through them via SMTP in the server-based Sent folder besides Gmail/Google Apps.
Typically though, once an IMAP4 connection (as opposed to POP3) to the mail server is created for the receipt of incoming mail, one can set the e-mail client to copy sent messages to an IMAP folder. Alternatively, sometimes an automatic BCC can be set up from the e-mail client.
Copying outbound messages to an IMAP folder would cause the synchronization of the local IMAP folder with the mail server and therefore provide a similar effect to the functionality of Gmail/Google Apps. However, in this case, each message sent via SMTP is transferred to the mail server twice:
1) The sending via SMTP.
2) The synchronization between local folder storage in the client and the corresponding folder on the mail server.
See: http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol#Disadvantages
No it is not mandatory, there's two mail protocols, POP3 (Post Office Protocol version 3) and IMAP (Internet Message Access Protocol), when using an email that talks in POP3 protocol, there is no way of telling POP3 to store the email sent...
The workaround was coded and crafted into an email client such as Outlook, Thunderbird, to name but a few, that are using the POP3 protocol.
However, when an email client talks in IMAP protocol, the email server knows where to store it, consider it in layman terms that the IMAP is an enhanced form of the POP3 protocol.
Thus any action carried out on your email client, such as sending mail, will get stored in the designated folder on your machine by your email client, ALSO, the server will dutifully store it in the folder on the server, as a result of the synchronization between your email client and the server.
Your mail provider has the choice of multiple ways to provide you access to email. Two of the more common ones are pop3 and imap. It sounds to me like you have pop3, which just pushes emails to the client and forgets about them.
You could have folders for your email, including sent messages, if your provider provides you with an imap server. Otherwise, your option is to change mail providers.