. Net sends emails through code, and. net code sends emails

Source: Internet
Author: User
Tags mailmessage smtpclient

. Net sends emails through code, and. net code sends emails

Key code:

Namespace to be referenced:

Using System. Net. Mail;
Using System. Net;

1 MailMessage mailObj = new MailMessage (); 2 3 mailObj. from = new MailAddress ("mayun@qq.com"); // recipient email address 4 mailObj. to. add ("mahuateng@qq.com"); // recipient email address 5 mailObj. subject = "Account Activation"; // topic 6 mailObj. body = mailbody; // Body, 7 mailObj. isBodyHtml = true; // indicates that the body content is HTML 8 9 SmtpClient smtp = new SmtpClient (); 10 smtp. host = "smtp.sina.cn"; // smtp server name 11 smtp. useDefaultCredentials = true; 12 smtp. credentials = new NetworkCredential ("mayun@qq.com", "pwd"); // sender's login name and password 13 smtp. send (mailObj );

 

Note:

I. smtp

SMTP (Simple Mail Transfer Protocol) is a set of rules for sending Mail from the source address to the destination address.

Make sure that this service is enabled in the email! Sina mail settings include:

 

 

2. "email names are not allowed. The server response is: Envolope sender mismatch with login user .. ".

 

 

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.