C
Carrouget Sebastien
Guest
Hello,
I try to send email in asp with cdont from a windows server 2003 and Plesk 9.2 server. IIS 6.0
I used the parallels tuto here http://kb.odin.com/fr/560
But when I try to send email : Permission denied
My code is :
<%
on error resume next
Dim Mailer
Set Mailer = Server.CreateObject("CDONTS.NewMail")
Mailer.To = "[email protected]"
Mailer.From = "[email protected]"
Mailer.Subject = "Titre du message"
Mailer.Body = "Le texte qui sera envoyé"
Mailer.Send
Set Mailer = nothing
response.write(err.description)
%>
Test url : http://winhebergement.com/mail.asp
Thanks
I try to send email in asp with cdont from a windows server 2003 and Plesk 9.2 server. IIS 6.0
I used the parallels tuto here http://kb.odin.com/fr/560
But when I try to send email : Permission denied
My code is :
<%
on error resume next
Dim Mailer
Set Mailer = Server.CreateObject("CDONTS.NewMail")
Mailer.To = "[email protected]"
Mailer.From = "[email protected]"
Mailer.Subject = "Titre du message"
Mailer.Body = "Le texte qui sera envoyé"
Mailer.Send
Set Mailer = nothing
response.write(err.description)
%>
Test url : http://winhebergement.com/mail.asp
Thanks