My host does not support CDONTS for sending email, but instead uses JMAIL.
I have a example of the code i need (in CDONTS) but need to translate it into a JMAIL version for it to work with my website.
Can anyone help?
<%
Dim objCDO
Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.From = Request.Form("EMAIL")
objCDO.To = Request.Form("POSTER_EMAIL")
objCDO.cc = Request.Form("EMAIL")
objCDO.Subject = Request.Form("SUBJECT")
objCDO.Body = Request.Form("MESSAGE")
objCDO.Send()
Set objCDO = Nothing
%>'






Mark Hensler posted this at 19:42 — 19th January 2003.
He has: 4,044 posts
Joined: Aug 2000
I did a google search for JMAIL...
http://www.comsoltech.com/articles/asp/200011/howtosendemail/
http://www.programmersresource.com/articles/jmailmail.asp
http://www.win-hosting.co.uk/a1scriptsjmail.asp
Mark Hensler ["Max Albert"] [Email]
If there is no answer on Google, then there is no question.