function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Team BuilderTeam Builder 

Maildrop 'Add Email' Problem with attachments -> ¿¿

First I'll say that I really appreciate Maildrop! Thanks for the OS X support.

I using Apple's Mail. Tiger-Intel. Here's my issues:
When I run the 'Add email' script it works fine for inbound mail from clients. But when I 'Add email' from my sent folder it has a problem when the message contains my signature which contains a jpg logo (an attachement displayed in message).

Here's what happens:
It identifies the contact fine. It logs the email fine. The subject is fine.
But the comment (email body) only show up as: ¿¿
(see attached pic)

Anyone else had this problem and knows the fix?

Unrelated: Here's a great website showing keyboard shortcuts within OS X
http://www.danrodney.com/mac/index.html

Thanks!
Stephen
Geoteaming
Seattle, WA
RupRup
Basically, MailDrop does not handle mail attachments, i.e. they are not uploaded to salesforce.com
I pointed this out to Zak a couple of months ago; presumably, he is still working on it.

Cheers,
Rup
Team BuilderTeam Builder
Thanks Rup. I expected the attachment to be stripped, but oddly it can't event add any of the text as plain text (my message starts as HTML message).

Just: -> ¿¿

It looks to me like the script should take the message as plain text so I'm curious why it's getting stumped.

(exerpt of 'Add email' script)
on createActivity(theSubject, theBody, theFromAddr, theFromName, theDate)
tell application "Maildrop"
set theEmail to make new email
set plain body of theEmail to theBody

I'm not too script saavy, but if anyone knows a modification I can cut and paste I'll take the help!

Thanks!
SuperfellSuperfell
The more interesting line is higher up in the script

Code:
set theBody to content of eachMessage

What Maildrop gets is what Mail tells it the message content is. Looking through the mail scripting dictionary, there doesn't seem to be any better option. (short of getting the raw message and reparsing it myself).