DOTNET send mail

Source: Internet
Author: User
Tags dotnet mailmessage smtpclient
Sendmail

Public bool Sendmail (string SMTP, string t_port, string from, string PWD, string to, string subject, string bodytext, string displayname, bool SSL)
{
System. net. Mail. smtpclient client = new smtpclient ();
Client. Host = SMTP;
Client. usedefacrecredentials = true;
Client. Timeout = 135000;
Client. deliverymethod = smtpdeliverymethod. Network;

Client. Credentials = new system. net. networkcredential (from, PWD );
Client. deliverymethod = smtpdeliverymethod. Network;
Client. Port = convert. toint32 (t_port );
 
System. net. Mail. mailmessage message = new mailmessage (from, );
Message. From = new mailaddress (from, displayname );
Message. Subject = subject;

Message. Body = bodytext;
Message. isbodyhtml = true;
Message. bodyencoding = system. Text. encoding. utf8;
Client. enablessl = SSL;
Client. Credentials = new system. net. networkcredential (from, PWD );

RegEx Reg = new RegEx (@ "^ \ W + ([-+.] \ W +) * @ \ W + ([-.] \ W + )*\. \ W + ([-.] \ W +) * $ ");

Try
{
If (Reg. ismatch (from) & reg. ismatch ())
{
Client. Send (Message );


Return true;
}
Else
Return false;
}
Catch (exception ex)
{

Return false;
}
}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.