Asp.net(c#)发送电子邮件

using System.web.Mail; 

            MailMessage msg = new MailMessage();
            //发送方地址(如test@163.com)
            msg.From = "zdyguilong@163.com";
            //接收方地址(如test@163.com)
            msg.To = "zdyguilong@163.com";
            //正文内容类型
            msg.BodyFormat = MailFormat.Html;
            //正文内容编码
            msg.BodyEncoding = System.Text.Encoding.Default;
            //主题
            msg.Subject = "张大宇向您问好";
            //内容
            msg.Body = "<html><head><META content=zh-cn http-equiv=Content-Language><meta http-equiv='Content-Type' content='text/html; charset=gb2312'><style type=text/css>A:link { FONT-SIZE: 9pt; TEXT-DECORATION: none; color: #000000}A:visited {FONT-SIZE: 9pt; TEXT-DECORATION: none; color: #666666}A:hover {COLOR: #ff6600; FONT-SIZE: 9pt; TEXT-DECORATION: underline}BODY {FONT-SIZE: 9pt} --></style></head><body><font color=red>用户名:" + UserName.Text.Trim() + "</font><br><font color=green>密码:" + strUserPsw.ToString() + "</font><br><b>验证地址:</b><a href='http://192.168.1.98/AllFiles/Member/CheckFromEmail.aspx?UserName=" + UserName.Text.Trim() + "'target=_blank>http://192.168.1.98/AllFiles/Member/CheckFromEmail.aspx?UserName=" + UserName.Text.Trim() + "</a>。如果您不能点击链接进行跳转,请把这个地址粘贴到浏览器的地址栏直接访问。<br><font color=red>此邮件不必回复,谢谢。</font></body></html>";
            //设置为需要用户验证
            msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");
            //设置验证用户名
            msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "zdyguilong");
            //设置验证密码
            msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "123456");
            //邮件服务器地址(如smtp.163.com)
            SmtpMail.SmtpServer = "smtp.163.com";
            //发送
            SmtpMail.Send(msg);
            //Response.Write("<script language='javascript'>alert('注册成功');window.location='../default.aspx'</script>"); 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值