Hello
I was trying to send birthday e-card from my website but
HTTP 500 Internal Server Error occurs
(Microsoft VBScript runtime error '800a0046'
Permission denied)
Here's my code:
<%
title = "Happy Birthday "
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.Importance = 1
objMail.From = "
[email protected]
objMail.To = "
[email protected]
objMail.Subject = title
' this is my messages HTML
strMsg = "Happy Birthday"
' set the format of the email to html, etc
objMail.BodyFormat = 0
objMail.MailFormat = 0
objMail.Body = strMsg
objMail.Send
' destroy the email object
Set objMail = Nothing
%>
Hope u can help me!
Thanks in advance!