Jump to content

ASP Emails .CreateMHTMLBody


Gnub

Recommended Posts

I've got a little problem with this following script.  What im expecting is for the script to email said person the webpage listed in the script.

 

though i am getting the following error:

Sun ONE ASP VBScript runtime (0x800A01B6)

Object does not support this property or method: 'CreateMHTMLBody'

 

<%
Dim myMail
Set myMail = CreateObject("CDONTS.NewMail")
myMail.From="[email protected]"
myMail.To="[email protected]"
myMail.Subject="CTS Hotel"
myMail.CreateMHTMLBody "http://www.w3c.co.uk" 
myMail.Importance = 2 
myMail.Send
set mymail=nothing
%>

 

Anyone able to see where im going wrong?

Link to comment
https://forums.phpfreaks.com/topic/47593-asp-emails-createmhtmlbody/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.