|
-
Oct 10th, 2002, 12:12 PM
#1
Thread Starter
Junior Member
Emailing,CDO,SMTP Help....
Hi
I am trying to build an emailing application with vb.net
I am using the following code:
Dim mailMessage As System.Web.Mail.MailMessage = New System.Web.Mail.MailMessage()
mailMessage.From = txtFROM
mailMessage.To = txtTO
mailMessage.BodyFormat = Web.Mail.MailFormat.Html
mailMessage.Subject = txtSubject
mailMessage.Body = txtBody
mailMessage.Bcc = txtBCC
System.Web.Mail.SmtpMail.SmtpServer = MxServer
System.Web.Mail.SmtpMail.Send(mailMessage)
Every thing works But: With some servers I get an error message (Could not access 'CDO.Message' object)
It's usually happen with hotmail.
-
Oct 11th, 2002, 03:51 PM
#2
Thread Starter
Junior Member
-
Oct 12th, 2002, 01:56 PM
#3
Thread Starter
Junior Member
-
Oct 15th, 2002, 06:29 AM
#4
Thread Starter
Junior Member
-
Oct 15th, 2002, 06:44 AM
#5
Fanatic Member
The CDO component must be installed on the server.
I had the same problem so i got in touch with my ISP and they sorted it out.
-
Oct 16th, 2002, 03:06 AM
#6
Thread Starter
Junior Member
Where can i get CDO component from?
I searched microsoft web sit , I didn't find it.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|