Chinaunix首页 | 论坛 | 博客
  • 博客访问: 502399
  • 博文数量: 130
  • 博客积分: 3581
  • 博客等级: 中校
  • 技术积分: 1200
  • 用 户 组: 普通用户
  • 注册时间: 2005-02-18 10:51
文章分类

全部博文(130)

文章存档

2016年(1)

2015年(8)

2014年(6)

2013年(2)

2012年(9)

2011年(16)

2010年(5)

2009年(4)

2008年(2)

2007年(6)

2006年(50)

2005年(21)

我的朋友

分类:

2006-02-08 14:37:50

一,简单的电子邮件发送
sendmail.aspx:
演示发送邮件
收件人: ;
    hpfFile.SaveAs(strPath);
    //add as attachment!
    MyMsg.Attachments.Add(new MailAttachment(strPath));

   }
   try
   {
    SmtpMail.Send(MyMsg);
    lblShowMsg.Text="发送成功!";
    tbTo.Text = "";
    tbSubject.Text = "";
    tbBody.Text = "";
    ddlPriority.SelectedIndex = 1;
    ddlBodyFormat.SelectedIndex = 0;
   }
   catch(Exception ee)
   {
    lblShowMsg.Text = "发送失败:"+ee.ToString();
   }

  
  
  
  
  
  }


  #region Web 窗体设计器生成的代码
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
   //
   InitializeComponent();
   base.OnInit(e);
  }
  
  ///


  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  ///

  private void InitializeComponent()
  {   
   this.btSend.Click += new System.EventHandler(this.Mail_Send);
   this.Load += new System.EventHandler(this.Page_Load);

  }
  #endregion
 }
}

 

阅读(1149) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~