Gnub Posted April 18, 2007 Share Posted April 18, 2007 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="1234@domain.co.uk" myMail.To="123@domain.co.uk" 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? Quote Link to comment https://forums.phpfreaks.com/topic/47593-asp-emails-createmhtmlbody/ Share on other sites More sharing options...
trq Posted April 19, 2007 Share Posted April 19, 2007 Pretty straight forward. There is no such method CreateMHTMLBody belonging to the NewMail object. Quote Link to comment https://forums.phpfreaks.com/topic/47593-asp-emails-createmhtmlbody/#findComment-232759 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.