Hi all,
I use the following script to put an image and adress as a signature below my e-mails. Now I am trying to workout the script to use it with Eudora, but I just can’t figure out how to put an image into the bodytext (not as an attachment). Does anyone know?
set fileAttachment to "PS 6.1:Productiezaken:Klantmappen:100001 Puntspatie:Mailpromotie:Ice-Sea-Stempel.gif" as alias
set this_text to "Into the Ice Sea.
Barents’ Wintering on Novaya Zemlya – A Renaissance voyage of Discovery.
Puntspatie [bno] | Grafische vormgeving
Address"
tell application "Mail"
set composeMessage to make new outgoing message at end of outgoing messages
tell composeMessage
set visible to true
set the content to return & return & return & this_text & return & return
tell content
make new attachment with properties {file name:fileAttachment} at before the first paragraph
end tell
end tell
end tell