Hey Guys
I need my txt to display like this:
[Opening free format]<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o></o>
<o> </o>
The file attached to this email contains a schedule of the policies you have placed with us which:
<o></o>
· XXXXX
· XXXXX
XXX
<o> </o>
XXX
<o> </o>
XXX
<o> </o>
[Closing free format]<o></o>
I have the following code in vba:
But it will come out like this: The file attached to this email contains a schedule of the policies you have placed with us which: XXXXX XXXX XXX XXX XXX [Closing free format]
Any help would be much appreciated.
THANKS HEAPS IN ADVANCE!
[Opening free format]
I need my txt to display like this:
[Opening free format]<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o></o>
<o> </o>
The file attached to this email contains a schedule of the policies you have placed with us which:
<o></o>
· XXXXX
· XXXXX
XXX
<o> </o>
XXX
<o> </o>
XXX
<o> </o>
[Closing free format]<o></o>
I have the following code in vba:
Code:
aEmail.body = "[Opening free format]" _
& "The file attached to this email contains a schedule of the policies you have placed with us which: " _
& "[FONT=Calibri]XXXXX[/FONT]" _
& "[FONT=Calibri]XXXXX[/FONT] " _
& "XXX " _
& "XXX " _
& "XXX " _
& "[Closing free format]" 'Change Body Message
But it will come out like this: The file attached to this email contains a schedule of the policies you have placed with us which: XXXXX XXXX XXX XXX XXX [Closing free format]
Any help would be much appreciated.
THANKS HEAPS IN ADVANCE!
[Opening free format]