In Mail.app, I have experienced difficulty retrieving the content of messages when the message encoding reveals:
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
I have used the following script:
tell application "Mail"
set sel to selection
repeat with msg in sel
set contentString to (content of msg)
end repeat
end tell
On the other hand, I have not experienced difficulty when a message encoding reveals:
Content-type: text/plain;
charset="US-ASCII"
Content-transfer-encoding: 7bit
Any ideas on how applescript retrieves contents of messages when a message is sent with charset="iso-8859-1" and
Content-Transfer-Encoding: quoted-printable?