728x90
MailMessage sendMail = new MailMessage();
sendMail.IsBodyHtml = true;

sendMail.Body = "<html><body>TEST</body></html>";
sendMail.BodyEncoding = System.Text.Encoding.UTF8;

sendMail.From = new MailAddress();
sendMail.To.Add(new MailAddress());

smtpServer.UseDefaultCredentials = false;
smtpServer.EnableSsl = false;
smtpServer.DeliveryMethod = SmtpDeliveryMethod.Network;
smtpServer.Send(sendMail);
sendMail.Dispose();
728x90
반응형

+ Recent posts