Ask a Question related to ASP, Design and Development.
-
Cat #1
Message not sending.. but why!?
Hey all,
I am experiencing this really bizzard problem with CDO and W2K.
I have the following code in ASP:
Dim objCDO
set objCDO = CreateObject("CDO.Message")
Dim strMailBody
Dim strMailSubject
strMailBody = "User : John has changed their profile. "
strMailSubject = "Sometext"
objCDO.To = "JoeyJoeJoe@Shabadu.com"
objCDO.From = "Shabadu@joeJoe.com"
objCDO.cc= ""
objCDO.Subject = strMailSubject
objCDO.TextBody = strMailBody
objCDO.Send
with the follwoing code, the message gets stuck in the Queue folder
under mailroot. BUT if i change objCDO.TextBody to objCDO.TextBody =
"User : John has changed their profile. " it works just fine. Am i
missing something with the way this is working?
Any help would be very helpful.
Cat Guest
-
Sending a CDO.Message with high importance?
Okay... Thought I'd try to move away from CDONTS to CDOSYS. The one thing that's still a puzzle is how to send a CDO.Message so that it shows up... -
Error Message When Sending Message In Windows Mail
Am I the only one getting an error message when replying to a posted message using Windows Mail. Every time I send a message I get a popup error... -
sending an SMS message
I'm pretty lost: I want to write a simple (???) program to send off an SMS message.. no ring tones or embedded pictures... just an app that'll... -
blank message sending help!
I been trying to stop blank messages being sent to my server with out any luck can anyone help please?? FCChatClass.prototype.sendMessage =... -
sending XML message to webservice problem
I have a customer who wants to send us a XML message like this: <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope... -
Ray at #2
Re: Message not sending.. but why!?
Have you looked in the event log on the server at SMTP messages?
Also, I think you want your body to be:
John as changed his profile.
Unless of course if you mean that John changed one single profile that many
people are sharing.
Ray at work
"Cat" <catmilea@yahoo.com> wrote in message
news:88741be9.0310091429.18ffb2bb@posting.google.c om...> Hey all,
> I am experiencing this really bizzard problem with CDO and W2K.
>
>
> I have the following code in ASP:
>
> Dim objCDO
> set objCDO = CreateObject("CDO.Message")
> Dim strMailBody
> Dim strMailSubject
> strMailBody = "User : John has changed their profile. "
> strMailSubject = "Sometext"
>
>
> objCDO.To = "JoeyJoeJoe@Shabadu.com"
> objCDO.From = "Shabadu@joeJoe.com"
> objCDO.cc= ""
> objCDO.Subject = strMailSubject
> objCDO.TextBody = strMailBody
>
> objCDO.Send
>
>
> with the follwoing code, the message gets stuck in the Queue folder
> under mailroot. BUT if i change objCDO.TextBody to objCDO.TextBody =
> "User : John has changed their profile. " it works just fine. Am i
> missing something with the way this is working?
>
>
> Any help would be very helpful.
Ray at Guest
-
Cat #3
Re: Message not sending.. but why!?
No theres nothing in the event logs, the text of the email is just an
example, im more concearned with why its not sending out rather than
the content at this point.
I have set the MimeFormatted to true, and it seemed to work once, but
started breaking soon after. I can consisntently send the email if all
the values are hard coded, but when i change them to use variables, it
all break..
odd one.
Thanks
[email]catmilea@yahoo.com[/email] (Cat) wrote in message news:<88741be9.0310091429.18ffb2bb@posting.google. com>...> Hey all,
> I am experiencing this really bizzard problem with CDO and W2K.
>
>
> I have the following code in ASP:
>
> Dim objCDO
> set objCDO = CreateObject("CDO.Message")
> Dim strMailBody
> Dim strMailSubject
> strMailBody = "User : John has changed their profile. "
> strMailSubject = "Sometext"
>
>
> objCDO.To = "JoeyJoeJoe@Shabadu.com"
> objCDO.From = "Shabadu@joeJoe.com"
> objCDO.cc= ""
> objCDO.Subject = strMailSubject
> objCDO.TextBody = strMailBody
>
> objCDO.Send
>
>
> with the follwoing code, the message gets stuck in the Queue folder
> under mailroot. BUT if i change objCDO.TextBody to objCDO.TextBody =
> "User : John has changed their profile. " it works just fine. Am i
> missing something with the way this is working?
>
>
> Any help would be very helpful.Cat Guest



Reply With Quote

