I have a ASP.NET MVC 4 project with EF. I' m using System.Net.Mail to send emails programmatically.
MailMessage msg = new MailMessage();
msg.From = new MailAddress("JohnDoe@gmail.com", "John Doe");
msg.To.Add(new MailAddress("janedoe@gmail.com"));
msg.Subject = "Hi.";
msg.Body= "Aleluia";
var smtp = new SmtpClient("mail.johndoe.com", 999);
smtp.EnableSsl = true;
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.UseDefaultCredentials = true;
smtp.Credentials = new System.Net.NetworkCredential("JohnDoe@gmail.com", "johnspass");
smtpclient.Send(msg);
Q : How can I save a copy of this email in John Doe's Sent Items ? If I have Outlook can I use this ?
Q2 : How can I elaborate this email's body(to add a image in the left top corner, to add a bolded text) ?