Using system. Web. Mail to send email

Source: Internet
Author: User
Tags mailmessage

There are required demos for send a email with C sharp language. However, you will find that most of them will be failed because of smtpserver. Especially, authorization is required.

 

Public void sendemail ()
...{
Mailmessage mail = new mailmessage ();
Mail. Priority = mailpriority. High;
Mail. From = "cccc@gmail.com ";
Mail. To = "cccc@163.com ";
Mail. Subject = "Send email system Demo ";
Mail. Body = "just for test .";
Mail. bodyencoding = encoding. utf8;

// Authorization
Mail. Fields. Add ("http://schemas.microsoft.com/cdo/configuration/sendusing", 1 );
Mail. Fields. Add ("http://schemas.microsoft.com/cdo/configuration/sendemailaddress", mail. From );
Mail. Fields. Add ("http://schemas.microsoft.com/cdo/configuration/smtpuserreplyemailaddress", mail. From );
Mail. Fields. Add ("http://schemas.microsoft.com/cdo/configuration/smtpaccountname", "cccc@163.com ");
Mail. Fields. Add ("http://schemas.microsoft.com/cdo/configuration/sendpassword", "CCCC ");
Mail. Fields. Add ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", 1 );
Mail. Fields. Add ("http://schemas.microsoft.com/cdo/configuration/smtpserver", "smtp.163.com ");

Smtpmail. smtpserver = "smtp.163.com ";
Smtpmail. Send (Mail );
}
# Endregion

 

 

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.