mail in asp

S

safs

I am developing site in asp.I am trying to send mail.Using CDO.Message
but in local i can send but in Remort server.....my cade is
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Requesting Catalog..........."
myMail.From="form name"
myMail.To="local server"
myMail.TextBody="Mail From Icmsolution Career"
myMail.HTMLBody=HTML1
myMail.Send
set myMail=nothing

if i want to send mail from remot server what should i do...
 
B

Brian Tillman

safs said:
I am developing site in asp.I am trying to send mail.Using CDO.Message
but in local i can send but in Remort server.....my cade is
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Requesting Catalog..........."
myMail.From="form name"
myMail.To="local server"
myMail.TextBody="Mail From Icmsolution Career"
myMail.HTMLBody=HTML1
myMail.Send
set myMail=nothing

if i want to send mail from remot server what should i do...

You should ask in a programming group.

microsoft.public.outlook.program_addins
microsoft.public.outlook.program_forms
microsoft.public.outlook.program_vba
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top