|
|
 |
Re: FN-FORUM: CDO.Message
date posted 25th September 2006 20:07
Sorry - Classic asp. Tried Bcc aswell with no luck - The host is checking
at their end in the morning - Pam
----- Original Message -----
From: "Mark Anderson" [EMAIL REMOVED]
To: [EMAIL REMOVED]
Sent: Monday, September 25, 2006 8:04 PM
Subject: RE: FN-FORUM: CDO.Message
>
> You haven't said what your using i.e. asp or asp.net! Here are two sites I
> use!
>
> Try this site, http://www.systemwebmail.com/ for asp.net or
> http://www.systemnetmail.com/ for asp.net2 and this page that talks about
> problems with CDO/CDOSys http://www.systemwebmail.com/faq/1.5.aspx
>
> Also with asp.net 1.1 I would use the following:-
> Dim message1 As New MailMessage
> message1.To = custEmail
> message1.From = From
> message1.Cc = cctext
> message1.Bcc = bcctext
> message1.BodyFormat = MailFormat.Html
> message1.Body = message
> message1.Subject = subject
>
> If Me.UseSMTPServer Then
> SmtpMail.SmtpServer = Me.getSMTPServerDetails
> End If
> SmtpMail.Send(message1)
>
> Normally kept as a separate procedure in it's own class so I can call from
> any page in the project.
>
> HTH
>
> Mark
>
> -----Original Message-----
> From: [EMAIL REMOVED] [EMAIL REMOVED] On Behalf Of
> [EMAIL REMOVED]
> Sent: 25 September 2006 17:37
> To: FN-FORUM / [EMAIL REMOVED]
> Subject: FN-FORUM: CDO.Message
>
>
> How do you do a cc with CDO.Message?
> I have tried all three of these but I don't get anything back.
>
> objMail.Cc = [EMAIL REMOVED]
>
> objMail.CC = [EMAIL REMOVED]
>
> objMail.cc = [EMAIL REMOVED]
>
>
>
> Thanks
> Pam
>
> --
> Freelancers, contractors earn more with Prosperity4 Call 0870 870 4414 or
> visit www.prosperity4.com and benefit from Inland Revenue approved
> expenses
> today.
>
> To advertise here: http://www.freelancers.net/advertising.html
>
>
> --
> Freelancers, contractors earn more with Prosperity4
> Call 0870 870 4414 or visit www.prosperity4.com
> and benefit from Inland Revenue approved expenses today.
>
> To advertise here: http://www.freelancers.net/advertising.html
>
> |
 |
|