Asp.net/c# send email

Source: Internet
Author: User
Tags c# send email mailmessage net send smtpclient

System. net. Mail. smtpclient Client = New System. net. Mail. smtpclient ();
Client. Host = " Smtp.163.com " ;
Client. usedefacrecredentials = False ;
Client. Credentials = New System. net. networkcredential ( " Your 163 email address " , " Password " );
Client. deliverymethod = System. net. Mail. smtpdeliverymethod. Network;
System. net. Mail. mailmessage message = New System. net. Mail. mailmessage ( " Your 163 email address " , " Recipient address " );
Message. Subject = " Topic Test " ;
Message. Body = " Asp.net send email " ;
Message. bodyencoding = System. Text. encoding. utf8;
Message. isbodyhtml = True ;
// To add an attachment, upload the attachment to the server first)
System. net. Mail. Attachment data = New System. net. Mail. Attachment ( @" Upfile \ fj.rar " ,
System. net. Mime. mediatypenames. application. octet );
Message. attachments. Add (data );
Try
{
Client. Send (Message );
Response. Write ( " Email successfully send. " );
}
Catch (Exception ex)
{
Response. Write ( " Send email failed. " + Ex. tostring ());

}

Related Article

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.