当用户在文本框中输入电子邮件地址后点击发送按钮时,如何发送电子邮件(自动生成)?我可以参考的任何网站?非常感谢
答案 0 :(得分:2)
你真的应该做更多的研究,因为很容易找到你正在寻找的答案。但是,这将指向正确的方向。
using System.Net.Mail;
MailMessage mm = new MailMessage("from@here.com", "to@there.com");
mm.Subject = "some subject";
mm.IsBodyHtml = true;
mm.Body = "<span>your html goes here -- for plain text see IsBodyHtml property</span>";
SmtpClient client = new SmtpClient();
client.Send(mm);