CDONTS to JMAIL?

They have: 26 posts

Joined: Nov 2001

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's picture

He has: 4,048 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
If there is no answer on Google, then there is no question.

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.