I have an AppleScript running out of FileMaker that sends an HTML email via Entourage.
My test emails I receive in both Mail.app and Entourage have =3D throughout the source HTML wherever there should have been a = and lines all end with an = character, breaking image URLs in the message.
Is there anything I can do about this or is Entourage doing this “for me”?
My AppleScript, which is actually Calculated AppleScript in FileMaker Pro looks like this…
"set orderNum to \"" & LineItems::ORDER_NUMBER & "\"¶
set shippingEmail to \"" & LineItems::SHIP_EMAIL & "\"¶
set ccEmail to \"" & LineItems::c_EmailCC & "\"¶
set theSubject to \"Your order [\" & orderNum & \"]\"¶
set theSource to \"" & LineItems::g_HTMLemailBody & "\"¶
tell application \"Microsoft Entourage\"¶
activate¶
set htmlOrderMessage to make new outgoing message at outbox folder with properties {to recipients:shippingEmail, CC recipients:ccEmail, subject:theSubject, content:theSource, has html:true}¶
send htmlOrderMessage¶
end tell"