Hello

One of my colleagues likes to use the stationary feature in Outlook to have a fancy background on her messages. She didn't realise that it would be changed when she sent to others.

As such, she would still like the fancy background for herself, but changed to white (or no image) before it sends.

I have put together this code, but although it technically it works and makes it white, it....err....makes the whole email blank.

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)On Error GoTo ErrorHandler


    With Item   'Item is your e-mail
        .BodyFormat = olFormatHTML
       .HTMLBody = "<body style=""background:#ffffff"">"
    End With


Exit Sub
ErrorHandler:
    MsgBox "Error!"
End Sub
Anyone have an idea how to do this? Is this possible?

Thank you