Company Logo on external mails

Is it possible to send the my company logo as a lettterhead to other companies who are using notes client or web mails(e.g. in yahoo mail) ?

Subject: Company Logo on external mails

Even we faced this issue. Tried different ways and found only this one working(but still not upto the mark). I wrote the following code in a function which’s called in the “QuerySave” of the “Memo” form.

    Dim ws As New NotesUIWorkspace	

Dim uidoc As NotesUIDocument	

Set uidoc = ws.CurrentDocument



Call uidoc.GotoField("Body")		

Call uidoc.InsertText(Chr(10)+Chr(10))

Call uidoc.GotoField("Body")

Call uidoc.Import("JPEG Image", path of the logo image)

Call uidoc.FieldAppendText( "Body", Chr(10) )

You take care of the customization part once u r satisfied with this. Using the above code, the logo is attached to the top of the email.

Also, ensure that the network location that contains the logo image is available to everyone. Otherwise, it shows an error.

Subject: Company Logo on external mails

Even we faced this issue. Tried different ways and found only this one working(but still not upto the mark). I wrote the following code in a function which’s called in the “QuerySave” of the “Memo” form.

    Dim ws As New NotesUIWorkspace	

Dim uidoc As NotesUIDocument	

Set uidoc = ws.CurrentDocument



Call uidoc.GotoField("Body")		

Call uidoc.InsertText(Chr(10)+Chr(10))

Call uidoc.GotoField("Body")

Call uidoc.Import("JPEG Image", path of the logo image)

Call uidoc.FieldAppendText( "Body", Chr(10) )

You take care of the customization part once u r satisfied with this. Using the above code, the logo is attached to the top of the email.

Also, ensure that the network location that contains the logo image is available to everyone. Otherwise, it shows an error.