摘要:
1.开启qq邮箱中的服务,需要记住授权码 2. MailAddress from = new MailAddress("email", "server"); MailAddress to = new MailAddress("", "client"); SmtpClient client = new 阅读全文
摘要:
public ContentResult Index() { return Content("测试"); //浏览器显示测试 } public EmptyResult Index() { return new EmptyResult(); //浏览器... 阅读全文