C # mail function implementation

Source: Internet
Author: User

Public class baseclass
{
Public bool sendemail (string toadd, string Sb, string subject) // toadd: Destination Address, SB: content, subject topic
{
Try
{
Mailaddress from = new mailaddress ("sweting@163.com"); // The address used to send the mail.
Mailaddress to = new mailaddress (toadd); // Destination Address
Mailmessage message = new mailmessage (from, );
Message. Subject = subject; // topic
Message. isbodyhtml = true;

Message. Body = Sb; // body
Smtpclient client = new smtpclient ("smtp.163.com"); // set the SMTP server, which is Sina.
Client. credentials = new system. net. networkcredential ("sweting", "19870109"); // you can specify the username and password used to log on to the stmp server. Enter the account ABC, for example, and the mailbox password.
Client. enablessl = true;
Client. Port = 588;
Client. Send (Message );
Message. Dispose ();
Return true;
}
Catch
{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.