Hi,
i am trying to add the send email functionality. currently the file that contain the code sits on development server while i want the code to use my local iis to send email. How can this be done?
Plz find the code below:
Code:
dim objMail, msg
msg = "message goes here"
Set objMail = Server.CreateObject("CDO.Message")
objMail.To = "[email protected]"
objMail.From = "[email protected]"
objMail.Subject = "Subject goes here"
objMail.HTMLBody = msg
objMail.Send()
Set objMail = Nothing