I know the basic methods to use when sending ASP email using CDONTS for an
SMTP server:
Set newMailObj = CreateObject("CDONTS.Newmail")
recipStr = "email@e..."
newMailObj.To = recipStr
newMailObj.Subject = "Check it out!"
newMailObj.Body = "Here's some email for you"
newMailObj.Send
I cant seem to find any information on how to do so using CDO. I have the
following to create my CDO object:
strProfileInfo= "server" & vbLf & "valid_account"
Set newMailObj= CreateObject("MAPI.Session")
newMailObj.Logon , , False, True, 0, True, strProfileInfo
But I do not know the methods to use to specify recipients, subject, body,
and how to send. Can someone please help me out on this one? I would
greatly appreciate it.
Thanks,
Binu
binu_k_mathew@h...