У меня есть пользователи, отправляющие почту через Outlook, который форматирует текст как Rich text. Я пытаюсь создать сценарий, в котором «универсальный» адрес электронной почты перехватывает электронную почту, преобразует ее в обычный текст и отправляет пользователю. У меня есть Re-Direct, работающий с некоторыми поисками, но тело сообщения все еще Rich Text. Есть ли способ, которым я могу изменить скрипт ниже, чтобы добиться этого:
расскажите приложение "Почта"
set AppleScript's text item delimiters to ""
set theRedirectRecipient to "intercept@mail.com"
set theRedirectSender to "Case manager"
set theMessages to the selection
repeat with thisMessage in theMessages
tell application "Mail"
set theRedirectedEmail to redirect thisMessage
tell theRedirectedEmail
if subject of thisMessage is "" then
set subject of theRedirectedEmail to "Subject Was Empty"
end if
make new to recipient at beginning of to recipients with properties {address:theRedirectRecipient}
delete bcc recipients
delete cc recipients
end tell
set the sender of theRedirectedEmail to theRedirectSender
#delay 1
send theRedirectedEmail
end tell
end repeat
конец сказать