. Net

Source: Internet
Author: User

2. send an email on the server side

 

Imports system. net
Imports system. net. Mail

Dim SMTP as smtpclient = new smtpclient ()
SMTP. Host = ""
SMTP. Credentials = new networkcredential ("","")
Dim mailfrom as string = getmailfrom ()
Dim mailto as string = getmailto ()
Dim subject as string = getmailsubject ()
Dim body as string = getmailbody ()

Dim message as mailmessage = new mailmessage ()
Message. From = new mailaddress (mailfrom, mailfrom, system. Text. encoding. utf8)
Message. CC. Add (tb_mail.text.tostring.trim)

Message. Priority = mailpriority. High
Message. isbodyhtml = true

Message. Subject = subject
Message. subjectencoding = system. Text. encoding. utf8
Message. Body = body
Message. bodyencoding = system. Text. encoding. utf8
SMTP. Send (Message)

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.