Risposta breve
Non esiste un'opzione specifica per questo. Ma puoi definire una regola ed eseguire un applescript.
Soluzione
-
Salva i applescript qui sotto con qualsiasi nome e in qualsiasi cartella tu voglia.
-
Vai a Mail app > Preferences > Rules
e fai clic su Add Rule
. Dare il nome theRule al nuovo ruolo e selezionare le condizioni per cui visualizzare le immagini remote. Per la tua domanda questo dovrebbe essere From
> [email protected]
.
- Puoi anche selezionare
Sender is in my Address Book
per visualizzare le immagini remote per tutte le email provenienti dai tuoi contatti.
-
Alla sezione Perform the following actions:
, seleziona Run Applescript
e scegli il file che hai scritto al passaggio 1.
-
Salva la regola.
Applescript
--BEGINNING OF SCRIPT
using terms from application "Mail"
on perform mail action with messages theMessages for rule theRule
tell application "Mail"
activate
repeat with eachMessage in theMessages
open eachMessage
tell application "System Events" to tell process "Mail"
set loadButton to a reference to button 1 of UI element 1 of row 1 of table 1 of scroll area 1 of front window
if loadButton exists then click loadButton
end if
end tell
end repeat
end tell
end perform mail action with messages
end using terms from
--END OF SCRIPT