Hello I have created a script to add picture at the end of an email after my signature, but actually the picture is added inside my signature and not after it.
Can anyone could point out a solution?
--add signature
tell application "Mail"
set the message signature of newMessage to signature "KR Promo"
end tell
--add optional picture
set the_file to choose file with prompt "Choose the picture file to attach:"
tell application "Mail"
tell newMessage to make new attachment with properties {file name:the_file}
end tell