Hi everyone -
I'm currently running Access 2000, and using Netscape Communicator 4.77 to send email messages.
I'm trying to format an email message to include carriage returns, but haven't been successful. I have tried all the options you see below in the code, and all of them give me the same result, which is that line 2 of the email message immediately follows line 1, on the same line (as follows):
Media Services acknowledges your request for the following Media resources: Event: Student Teaching Seminar
What I want to see is this:
Media Services acknowledges your request for the following Media resources: (a carriage return here)
Event: Student Teaching Seminar
My code follows:
' strMessage = "Media Services acknowledges your request for the following resources:" & vbCrLf
' strMessage = "Media Services acknowledges your request for the following resources:" & vbNewLine
' strMessage = "Media Services acknowledges your request for the following resources:" & Chr(10) & Chr(13)
strMessage = "Media Services acknowledges your request for the following resources:" & Chr(13) & Chr(10)
strMessage = strMessage & "Event: " & Me!EventTitle.Value
DoCmd.SendObject , , acFormatRTF, strEmail, , , "Media Services Confirmation", strMessage, True
Can anyone offer a suggestion? It seems that most of you use Outlook for email, and I've read in this forum that these various options work with Outlook. Could my problem be that Netscape can't handle these characters?
Thanks in advance for your help...
- Anita
I'm currently running Access 2000, and using Netscape Communicator 4.77 to send email messages.
I'm trying to format an email message to include carriage returns, but haven't been successful. I have tried all the options you see below in the code, and all of them give me the same result, which is that line 2 of the email message immediately follows line 1, on the same line (as follows):
Media Services acknowledges your request for the following Media resources: Event: Student Teaching Seminar
What I want to see is this:
Media Services acknowledges your request for the following Media resources: (a carriage return here)
Event: Student Teaching Seminar
My code follows:
' strMessage = "Media Services acknowledges your request for the following resources:" & vbCrLf
' strMessage = "Media Services acknowledges your request for the following resources:" & vbNewLine
' strMessage = "Media Services acknowledges your request for the following resources:" & Chr(10) & Chr(13)
strMessage = "Media Services acknowledges your request for the following resources:" & Chr(13) & Chr(10)
strMessage = strMessage & "Event: " & Me!EventTitle.Value
DoCmd.SendObject , , acFormatRTF, strEmail, , , "Media Services Confirmation", strMessage, True
Can anyone offer a suggestion? It seems that most of you use Outlook for email, and I've read in this forum that these various options work with Outlook. Could my problem be that Netscape can't handle these characters?
Thanks in advance for your help...
- Anita