C#发邮件的代码 (vs2005)

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Net;
using System.Net.Mail;

public partial class sendemail : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void Button1_Click(object sender, EventArgs e)
    {

        string s_from = TextBox1.Text.Trim().ToString();
        string s_to = TextBox3.Text.Trim().ToString();
        string pwd=TextBox2.Text .Trim().ToString();
        string s_body =TextBox5.Text.Trim().ToString();
        s_body = s_body.Replace("/r/n","<br/>");
        s_body = s_body.Replace("/n", "<br/>");
        s_body = s_body.Replace(" ", "&nbsp");

        int i = s_from.IndexOf("@");
        string username = s_from.Substring(0,i);


        MailAddress from = new MailAddress(s_from);
        MailAddress to = new MailAddress(s_to);
        MailMessage mailobj = new MailMessage(from ,to);
        mailobj.Subject = TextBox4.Text.Trim().ToString();
        mailobj.Body = s_body;
        mailobj.IsBodyHtml = true;
        mailobj.BodyEncoding = System.Text.Encoding.GetEncoding("GB2312");
        mailobj.Priority = MailPriority.High;

        if (FileUpload1.PostedFile.ContentLength > 0)
        {
            mailobj.Attachments.Add(new Attachment(  FileUpload1.PostedFile.FileName));
        }

        SmtpClient smtp = new SmtpClient("smtp.163.com");
       // smtp.Host = "smtp.163.com";
        smtp.UseDefaultCredentials = false;
        smtp.Credentials = new NetworkCredential(username,pwd);
        smtp.DeliveryMethod = SmtpDeliveryMethod.Network;

        try {
            smtp.Send(mailobj);
            Response.Write("ok!");
       
        }
        catch
       
        {
            Response.Write("sorry!");
        }
       
        
         }
}

因为用的邮箱都是163的,所以就设置了smtp的地址是163的地址,如果用别的邮箱,只要smtp的地址改下就可以了.

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值