N
nickpick
Guest
Having problems using a webform with ASP sending mail.
In a standard IIS install it works, but with Plesk 6.5 installed (and thus Mail Enable), it won't work and I can't send mail with a web form.
I replaced the mailing part in my ASP script with following (taken from www.mailenable.com) :
Dim oMail
Set oMail = server.CreateObject("MEMail.Message")
oMail.MailFrom = "test@mydomain.com"
oMail.MailFromDisplayName = "Test Account"
oMail.ContentType = "text/html;"
oMail.MailTo = "test@mydomain.com"
oMail.Subject = "Welcome to our service"
oMail.MessageBody = "<html><body><h1>Hello there,<BR>Welcome to our new service.</h1></body></html>"
oMail.SendMessage
Anyone solved this issue?
In a standard IIS install it works, but with Plesk 6.5 installed (and thus Mail Enable), it won't work and I can't send mail with a web form.
I replaced the mailing part in my ASP script with following (taken from www.mailenable.com) :
Dim oMail
Set oMail = server.CreateObject("MEMail.Message")
oMail.MailFrom = "test@mydomain.com"
oMail.MailFromDisplayName = "Test Account"
oMail.ContentType = "text/html;"
oMail.MailTo = "test@mydomain.com"
oMail.Subject = "Welcome to our service"
oMail.MessageBody = "<html><body><h1>Hello there,<BR>Welcome to our new service.</h1></body></html>"
oMail.SendMessage
Anyone solved this issue?