问题描述
我用的是google的邮箱请问下面这个应该怎么填啊<smtp><networkhost=""port="25"userName=""password=""/></smtp>
解决方案
解决方案二:
<?xmlversion="1.0"encoding="utf-8"?><configuration><appSettings/><connectionStrings/><system.web></system.web><system.net><mailSettings><smtpfrom="发件人邮箱"><networkhost="服务器地址比如:SMTP.163.COM"password="发件人邮箱密码"userName="发件人用户名"/></smtp></mailSettings></system.net></configuration>
解决方案三:
不仅web.config中要配置,后台也要写代码的。
解决方案四:
我的代码,给看看啊,怎么才能好用啊protectedvoidbtnSend_Click(objectsender,EventArgse){MailMessagemm=newMailMessage();//发件人地址,也可以在MailMessage的构造函数里设置MailAddressma=newMailAddress(emailfrom.Text);mm.From=ma;//多个收件人地址,可以用Add继续添加mm.To.Add(emailto.Text);mm.Subject=subject.Text;mm.Body=body.Text;SmtpClientsc=newSmtpClient();sc.Send(mm);}
时间: 2024-12-21 05:53:46