home / software / tips and tricks / How to send Email Using Classic asp

How to send Email Using Classic asp

Updated:  08/22/2011 10:08 AM
Author:  Shiju Mathews

Status:    Resolved.


Dim mail
Set mail = Server.CreateObject("CDO.Message")
mail.To = "[TOEmail]"
mail.From = "FromEmail"
mail.Subject = "[Subject]"
mail.HTMLBody = "[EmailBody]"
'mail.TextBody = "[EmailBody]" For text
mail.Send()
Tags: How to send Email Using Classic asp
Updated on: April 2024