Si las fotos y las medidas son adjuntos, podría utilizar Automator para descargar los mensajes seleccionados en una carpeta.
Editar: Escribí este AppleScript que descargará el mensaje y los adjuntos de todos los correos electrónicos seleccionados en Correo. Cree una nueva carpeta en su directorio de inicio llamada Emails
y ejecute el siguiente código en Editor de AppleScript.
NOTA: Asegúrese de que la carpeta Emails
esté vacía. Puede haber problemas si ya hay elementos en ella.
tell application "Mail"
set the_messages to selection
repeat with this_message in the_messages
set message_subject to subject of this_message
set message_body to content of this_message
set download_path to "~/Emails/\"" & message_subject & "\""
set save_path to (POSIX path of ("/Users/" & (short user name of (system info)) & "/Emails/" & message_subject & "/"))
(* crear un directorio para el mensaje y los archivos adjuntos *)
do shell script "mkdir -p " & download_path
(* guardar el cuerpo del mensaje en un archivo *)
do shell script "echo \"" & message_body & "\" > " & download_path & "/message.txt"
(* guardar los adjuntos *)
repeat with the_attachment in this_message's mail attachments
save the_attachment in save_path & ":" & (name of the_attachment)
end repeat
end repeat
end tell