I am sending email throught SMTP Client using below code.
MailMessage objMail = new MailMessage("FromEmail", "ToEmail", "Subject", "Email Body");
SmtpClient SmtpClnt = new SmtpClient();
SmtpClnt.Send(objMail);
I have two question here
- How can I ensure that email is not sent junk email folder?
- Can I hide from email to recipient and just show some textual name?
Thanks
You can’t do #1. The choice of whether a piece of email is marked as junk is up to the user. For example, they may create a rule that all mail from you (or with your name in it) is sent to their Junk mail folder (or deleted!). The best way to get folks to read your emails and not have automated systems treat it as spam is to send content that people want to read.