http://CC318.com

一个程序的窝

我的窝窝 http://CC318.com 这里有更多内容,不信你试试.
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

asp.net 2.0 无SMTP服务也能发送邮件

Posted on 2009-02-13 11:25  chaoliu  阅读(213)  评论(0编辑  收藏  举报
void sendmail()
    {
        System.Web.Mail.MailMessage msgMail = new System.Web.Mail.MailMessage();

        //msgMail.To = "Order@labdelon-estore.com";
        msgMail.To = "ppsetserver@hotmail.com";
        msgMail.Cc = "eviuu@live.com";
        msgMail.From = TextBox2.Text.Trim();
        msgMail.Subject = "PicSure-It Contact.";

        msgMail.BodyFormat = System.Web.Mail.MailFormat.Html;
        msgMail.Body = TextBox4.Text;
        try
        {
            System.Web.Mail.SmtpMail.Send(msgMail);
        }
        catch
        {
           
        }
        Response.Redirect("Thanks.aspx?info= ");
    }
http://CC318.com