The process of sending a letter with a jmail, and how to use it. Call directly when used

Source: Internet
Author: User
Tags format message mail
jmail| process a letter with the JMail process, and the use of the method.
When you send a letter, call the procedure directly.
<%
Dim str,htmlbody
htmlbody= "Str=jmailsend ("2yup", "ILoveYou", True,htmlbody, "2yup@2yup.com", "suercool@sina.com", "Suercool", "smtp.sina.com.cn "," Suercool "," Password ")

If str= "Y" Then
Response.Write ("Send Success")
Else
Response.Write ("Send failed! Please try again!")
End If
'=================================================
' Function name: jmailsend
' function: Send mail with JMail
' Parameters: Subject message headers
' Body mail content
' Body mail content
' ishtml whether to send HTML-formatted messages (true)
' HtmlBody HTML format message content
' MailTo recipient Email
' From sender email
' FromName Sender Name
' SMTP SMTP server
' Username Mailbox User name
' Password mailbox password
' Return value: jmailsend= ' N ' send failed jmailsend= ' Y ' sent successfully
' ~~~~~~~~~~suercool~~~~~

'=================================================

function Jmailsend (Subject,body,ishtml,htmlbody,mailto,from,fromname,smtp,username,password)
Dim jmailmsg
Set Jmailmsg=server.createobject ("Jmail.message")
Jmailmsg.mailserverusername=username
Jmailmsg.mailserverpassword=password

Jmailmsg.addrecipient MailTo
Jmailmsg.from=from
Jmailmsg.fromname=fromname

jmailmsg.charset= "gb2312"
Jmailmsg.logging=true
Jmailmsg.silent=true

Jmailmsg.subject=subject
Jmailmsg.body=body
If Ishtml=true then Jmailmsg.htmlbody=htmlbody

If not jmailmsg.send (SMTP) Then
Jmailsend= "N"
Else
Jmailsend= "Y"
End If
Jmailmsg.close
Set jmailmsg=nothing
End Function
%>



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.