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