FAQ
- How to set up email account on iPhone?
- How to login webmail?
- How to login to Email Manager?
- What is IMAP?
- If my Email Service Plan do not include SMTP server, how do I send the Email?
- What is SMTP server (port 25)?
- How can I change FTP password? (For Window Platform)
- How do I create my email account?
- Error Code: 0x800CCC0E, 0x800CCC0F, 0x8004210B or 0x80042108
- Why my Outlook Express keeps trying to send a message but the Outbox appears to be empty?
- What is a DNS Record?
- How to Set Up an Email Account in Outlook 2003?
- How to upload my website to server?
- How to get the login information of Email Manager ?
- Error Code: 0x800CCC6A
- What is Web Control Panel (WCP)?
- What is a Top Level Domain (TLD)?
- What is a Mailing List?
Does Communilink support Jmail?
Our Windows hosting servers support Jmail. Below are 2 simple examples written in ASP. For more information, please visit theJMail website.
Sample I : Use Localhost as SMTP Server
=================================================== Set JMail = Server.CreateObject("JMail.SMTPMail")
JMail.ServerAddress = "www.YourDomain.com" JMail.Sender = "[email protected]" JMail.Subject = "JMail Sample" JMail.AddRecipient "[email protected]" JMail.body = "This is a sample message sent with JMail." JMail.Execute Sample II : Use Specified SMTP Server and User Login+Password
===================================================
set msg = Server.CreateOBject( "JMail.Message" )
msg.Logging = true msg.silent = true msg.From = "[email protected]" msg.FromName = "My Realname" msg.AddRecipient "[email protected]", "His Name" msg.AddRecipient "[email protected]" msg.Subject = "How you doin?" msg.Body = "Hello Jim" & vbCrLf & vbCrLf & "How's it going? ..." ' username = user%domain.com
' password = password
' smtp server = smtp.isp.com if not msg.Send("user%domain.com:password@smtp.isp.com" ) then Response.write msg.log else Response.write "Message sent succesfully!" end if |
Previous Post:My website cannot access to MS access db, can you help?