Save Apple Mail And Attachments As PDF

I posted this, seven years ago. Perhaps, several new OS X versions later, this is possible.

I am requesting assistance with a Mail issue. I am searching for an Applescript that:

1: Prompts and allows the user to select one or more Apple Mail email messages from within Mail.

2: Prompts and allows the user to select a save-to folder.

3: For each message, saves it as a PDF file in the save-to folder, using the following naming convention for the PDF file:

 "YYYY-MM-DD HH.MM.SS Email From FIRSTNAME LASTNAME - SUBJECT",

 "YYYY-MM-DD HH.MM.SS Email To FIRSTNAME LASTNAME - SUBJECT",

where, in the email date-sent stamp (if I am the sender), or, in the date-received stamp (if I am the recipient):

YYYY = the year
MM = the two-digit month
DD = the two-digit day
HH = the two-digit hour (in 24-hour time)
MM = the two-digit minute
SS = the two-digit second
FIRSTNAME is the email sender’s first name for email that I receive (or is the email recipient’s first name for email that I send)
LASTNAME is the email sender’s last name for email that I receive (or is the email recipient’s first name for email that I send)
SUBJECT = the email’s subject line

For example: 2015-01-11 16.32.48 Email From Jill Nicole - Status Of Payroll Updates.pdf
For example: 2015-01-11 16.33.55 Email To Carol Davis - RE Status Of Payroll Updates.pdf (Colon omitted after “RE”.)

4: For each attachment to the message, saves it as a PDF file in the same directory using the naming convention:

 "YYYY-MM-DD HH.MM.SS Email From FIRSTNAME LASTNAME Z Attachment - NUMBER - FILENAME",

where:

YYYY-MM-DD HH.MM.SS Email From FIRSTNAME LASTNAME = as above
NUMBER = an integer representing the attachment number (1, 2, …) sorted according to filename alphabetical order
FILENAME = the name of the file attached to the email, including its extension (.docx, .xlsx, etc.)
The letter “Z” sorts the attachment PDFs after its respective parent email in the directory.

For example: 2015-01-11 16.32.48 Email From Jill Nicole Z Attachment - 1 - List Of Suggestions To Moore.doc.pdf
For example: 2015-01-11 16.32.48 Email From Jill Nicole Z Attachment - 2 - Proposed Salary Adjustments.xls.pdf
For example: 2015-01-11 16.32.48 Email From Jill Nicole Z Attachment - 3 - Salary History.pps.pdf

Note: Approximately two-thirds of all of the emails will have no attachments. The remainder will have one or more attachments consisting of a PDF or MS Office file (Word, Excel, Power Point); however, a smart implementation will be able to handle any attachment kind. If the attachment is a PDF file, then save it “as is” using the stipulated naming convention.

Thank you for any and all assistance.

Kurt

You may try to run :

(*
# Define the folder where files will be stored
set storageName to "Attachments"
set p2d to path to documents folder from user domain
set attachmentsFolder to (p2d as text) & storageName & ":"
do shell script "/bin/mkdir -p " & quoted form of (POSIX path of attachmentsFolder)
*)
# =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
# OF COURSE YOU MAY USE: set attachmentsFolder to ( choose folder) as text
set attachmentsFolder to (choose folder) as text
# =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=

# =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
set mySelf to {"Kurt YourLastName", "YourLastName Kurt"} # I USE BOTH FORMATS, EDIT TO FIT YOUR NEEDS
# =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=

tell application "Mail"
	activate
	set theMessages to (get selection)
end tell

---------------------------------------
repeat with eachMessage in theMessages
	--Open  an mail and treat it
	tell application "Mail"
		open eachMessage
		delay 0.5
		set wName to name of window 1
		
		tell eachMessage # extracts datas from the selected message
			set sender_Name to extract name from its sender
			set sender_Mail to extract address from its sender
			set mail_Subject to subject
			set mail_Date to date received # will keep the time component
			set target_name to (name of its to recipient)
		end tell # the message
	end tell # Mail
	
	# No longer speak to Mail
	
	tell mail_Date
		set theYear to year
		set theMonth to its month as number
		set theDay to day
		set theHour to its hours
		set theMinutes to its minutes
		set theSeconds to its seconds
	end tell
	set begName to (theYear as text) & "-" & text -2 thru -1 of ((100 + theMonth) as text) & "-" & text -2 thru -1 of ((100 + theDay) as text) & space & text -2 thru -1 of ((100 + theHour) as text) & "." & text -2 thru -1 of ((100 + theMinutes) as text) & "." & text -2 thru -1 of ((100 + theSeconds) as text) & " Email "
	
	if sender_Name is in mySelf then
		set begName to begName & "to " & target_name
	else
		set begName to begName & "from " & sender_Name
	end if
	
	set thePDFname to begName & " - " & my supprime(mail_Subject, {":", "/"}) & ".PDF"
	set pdfPath to (path to desktop as text) & thePDFname
	
	-- Print the opened email
	
	tell application "System Events"
		tell process "Mail"
			set frontmost to true
			keystroke "p" using {command down} # Issue the Print shortcut
			tell window wName
				repeat
					try
						if (exists pop up button 1 of sheet 1) then exit repeat
					end try
					delay 0.2
				end repeat
				
				--name of menu buttons of sheet 1 of window wName
				--> {"PDF"} # but I don't know if it's spelled this way worldwide
				tell sheet 1
					set PDFButton to first menu button
					click PDFButton
					-- name of menu items of menu 1 of PDFButton
					--> {"Ouvrir le PDF dans Aperçu", "Enregistrer au format PDF.", "Enregistrer au format PostScript.", "Faxer le document PDF.", missing value, "@ PDF-BAT.qfilter", "@ PDF-prépresse CMJN.qfilter", "@ PDF-web.qfilter", "@ PDFX3-ISO.qfilter", "Add PDF to iTunes", "Envoyer le document PDF par courrier électronique", "Enregistrer le document PDF dans le dossier de reçus web", missing value, "Modifier le menu."}
					click menu item 2 of menu 1 of PDFButton
					
					repeat
						if exists sheet 1 then exit repeat # the Print sheet exists, exit the loop!
						delay 0.1
					end repeat
					
					tell sheet 1
						keystroke "d" using {command down} # Set the Desktop as destination folder
						set value of text field 1 to thePDFname # Set the name of the new PDF
						keystroke return
					end tell # sheet 1 (the Save As one)
				end tell # sheet 1 of window wName
			end tell
		end tell # process "Mail"
		
		repeat
			if exists disk item pdfPath then exit repeat # Now the pdf is really available on the Desktop
			delay 0.1
		end repeat
	end tell # System Events
	
	# We may move the PDF to its final location
	set pdfPath to quoted form of POSIX path of pdfPath
	do shell script "mv " & pdfPath & space & quoted form of (POSIX path of attachmentsFolder)
	
	# Now speak again to Mail
	tell application "Mail"
		try
			# Here only if the message has attacments
			set num to 1
			repeat with theAttachment in eachMessage's mail attachments
				set fileName to begName & " Attachment - " & num & " - " & theAttachment's name
				save theAttachment in file (attachmentsFolder & my supprime(fileName, {":", "/"})) # I know, I'm a bit paranoid
				set num to num + 1
			end repeat
		end try
		close window wName
	end tell
end repeat # with eachMessage.

#=====
(*
removes every occurences of d in text t
*)
on supprime(t, d)
	local oTIDs, l
	set {oTIDs, AppleScript's text item delimiters} to {AppleScript's text item delimiters, d}
	set l to text items of t
	set AppleScript's text item delimiters to ""
	set t to l as text
	set AppleScript's text item delimiters to oTIDs
	return t
end supprime

#=====

I forgot that I also wrote :
Don’t forget to insert your true name(s) in the instruction defining myself.

Yvan KOENIG (VALLAURIS, France) lundi 30 mars 2015 15:03:45

Hello, Yvan.

Thank you for your effort. Nice work.

I will share a few observations:

1: The script does not prompt me for a location to save the PDF.

2: The filenames of saved PDF files of email messages that I send to recipients, should be formatted as “To” that recipient, not, “From” Kurt.

3: I ran the script on an email message that contained an Excel file attachment. The script saved the email message as a PDF, and, it saved the Excel file as an Excel file, instead of as a PDF.

4: I ran the script on two email messages. The new email message window, and, the print dialog window, became unresponsive. They would not respond to clicks. I force quit email, and then, relaunched it.

I will continue testing the script.

Thank you.

Kurt

Is it difficult to read what is posted ?[
(1) As you may see, I carefully wrote : Of course you may use set attachmentsFolder to ( choose folder) as text
More, I carefully gave the instruction required to do that.

set attachmentsFolder to ( choose folder) as text

I apologize, I am able to explain what to do but I can’t do it for you.

(2) As you may also see, I carefully wrote :
set mySelf to {“firstName lastName”, “lastName firstName”} # I use both formats. Edit to fit your needs

It seems that you didn’t edit the instruction. I can’t do it for you !
It seems that your firstName is Kurt so a first step is to edit as :
set mySelf to {“Kurt lastName”, “lastName Kurt”} # I use both formats. Edit to fit your needs
is quite what you need. Replace lastName by your true last name as every other reader was able to understand.

(3) I saw that you asked to save attachments as PDF but to be able to code this feature I would have to know how to drive Excel or other applications.
Excel is made by Merdosoft so it’s not allowed to enter my home.
There are thousands of file types. Each of them requires its own set of instruction to be saved into PDF.
For a
spreadsheet, it would requires one PDF for each sheet

(4) As I know the limits of my script, I carefully wrote : You may try to run :
I assumed that understanding the meaning of these six words wasn’t too difficult. I was wrong.

(5) After posting here, I discovered that with some documents, when we call the print process, Mail may display a sheet with the message “Création du contenu à imprimer.” and a single button “Annuler”.

The edited script is available above.

Yvan KOENIG (VALLAURIS, France) lundi 30 mars 2015 21:10:53

Yvan;

I’ve seen a few posts relating to this script. I notice that this one is from about 2015. Is this the most recent variant?

I definitely have a need to take emails and their attachments “offline”. I am quite happy to have the main email in a PDF (or another format that saves links) and to have attachments in the “as-sent” format.

If I remember well, I have a version which saves directly in attachmentsFolder.

I will try to retrieve it but I’m a bit annoyed because I will be unable to test it with Mojave because my iMac doesn’t accept this operating system.

I can’t search this morning, maybe - but not guaranteed - this afternoon.

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) dimanche 27 janvier 2019 09:37:59

You may try to run :

(*
https://macscripter.net/viewtopic.php?id=43790
2019/01/27
*)
my Germaine() # With this added step the script will not save globals in its file.

on Germaine()
	# =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
	
	set mySelf to {"Yvan KOENIG", "KOENIG Yvan"} # I USE BOTH FORMATS, EDIT TO FIT YOUR NEEDS
	
	# =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
	
	# Define the folder where files will be stored
	set attachmentsFolder to (choose folder) as text
	
	tell application "Mail"
		activate
		set theMessages to (get selection)
	end tell
	
	---------------------------------------
	repeat with eachMessage in theMessages
		# Open a mail and treat it
		tell application "Mail"
			open eachMessage
			delay 0.5
			set wName to name of window 1
			
			tell eachMessage # extract datas from the selected message
				set sender_Name to extract name from its sender
				set sender_Mail to extract address from its sender
				set mail_Subject to subject
				set mail_Date to date received # will keep the time component
				set target_name to (name of its to recipient)
			end tell # the message
		end tell # application Mail
		
		# No longer speak to application Mail
		
		tell mail_Date
			set theYear to year
			set theMonth to its month as number
			set theDay to day
			set theHour to its hours
			set theMinutes to its minutes
			set theSeconds to its seconds
		end tell
		set begName to (theYear as text) & "-" & text -2 thru -1 of ((100 + theMonth) as text) & "-" & text -2 thru -1 of ((100 + theDay) as text) & space & text -2 thru -1 of ((100 + theHour) as text) & "." & text -2 thru -1 of ((100 + theMinutes) as text) & "." & text -2 thru -1 of ((100 + theSeconds) as text) -- & " Email "
		
		if sender_Name is in mySelf then
			set begName to begName & " to " & target_name
		else
			set begName to begName & " from " & sender_Name
		end if
		
		set thePDFname to begName & " - " & my remplace(mail_Subject, {":", "/"}, "-") & ".PDF" # I know, I'm a bit paranoid
		set posixFolderPath to POSIX path of attachmentsFolder
		set pdfPath to POSIX path of (posixFolderPath & thePDFname)
		
		-- Print the opened email as PDF
		tell application "System Events"
			tell process "Mail"
				set frontmost to true
				set windowName to name of window 1
				keystroke "p" using {command down} # Issue the Print shortcut
				tell window wName
					repeat
						try
							if (exists pop up button 1 of sheet 1) then exit repeat
						end try
						delay 0.2
					end repeat
					
					tell sheet 1
						set PDFButton to first menu button
						click PDFButton
						tell menu 1 of PDFButton
							name of menu items
							--> {"Ouvrir le PDF dans Aperçu", "Enregistrer au format PDF…", "Enregistrer au format PostScript…", "Faxer le document PDF…", missing value, "@ PDF-BAT.qfilter", "@ PDF-prépresse CMJN.qfilter", "@ PDF-web.qfilter", "@ PDFX3-ISO.qfilter", "Add PDF to iTunes", "Envoyer le document PDF par courrier électronique", "Enregistrer le document PDF dans le dossier de reçus web", missing value, "Modifier le menu…"}
							click menu item 2
						end tell
						repeat
							if exists sheet 1 then exit repeat # the Print sheet exists, exit the loop!
							delay 0.1
						end repeat
					end tell # sheet 1
					
					tell sheet 1 of sheet 1
						set wichElements to class of UI elements
						if wichElements contains combo box then # maybe Mojave
							get position of combo boxes --> {{910, 118}, {910, 148}}
							set value of combo box 1 to thePDFname
						else -- Yosemite, El Capitan, Sierra, High Sierra
							--> {static text, text field, UI element, static text, text field, group, radio group, group, pop up button, text field, splitter group, text field, static text, button, text field, static text, text field, static text, static text, text field, button, button, button}
							get position of text fields --> {{1262, 194}, {1262, 224}, {1458, 263}, {1086, 646}, {1086, 616}, {1086, 552}, {1086, 584}}
							set value of text field 1 to thePDFname
						end if
					end tell # sheet 1 of sheet 1 
					
					keystroke "g" using {command down, shift down}
					repeat until exists sheet 1 of sheet 1 of sheet 1
						delay 0.02
					end repeat
					tell sheet 1 of sheet 1 of sheet 1
						--name of UI elements
						set wichElements to class of UI elements # According to system in use, may be
						--> {static text, combo box, button, button} -- El Capitan, Sierra, High Sierra, maybe Mojave
						--> {static text, text field, button, button} -- … Yosemite
						if wichElements contains combo box then
							set SaveIndex to -1
							set value of combo box 1 to posixFolderPath
						else
							set SaveIndex to 1
							set value of text item 1 to posixFolderPath
						end if
						name of buttons --> {"Aller", "Annuler"}
						click button 1
					end tell # sheet 1 of sheet 1 of sheet 1 
					
					tell sheet 1 of sheet 1
						--name of UI elements # According to system in use, may be
						--> {"Enregistrer", "Nouveau dossier", "Annuler"}
						--> {"Nouveau dossier", "Annuler", "Enregistrer"}
						click button SaveIndex
					end tell # sheet 1 of sheet 1 
				end tell -- window wName
			end tell # process Mail
		end tell # "System Events"
		
		# Now speak again to application Mail
		tell application "Mail"
			try
				# Do that only if the message has attacments
				set num to 1
				repeat with theAttachment in eachMessage's mail attachments
					set fileName to begName & " Attachment - " & num & " - " & theAttachment's name
					save theAttachment in file (attachmentsFolder & my remplace(fileName, {":", "/"}, "-")) # I know, I'm a bit paranoid
					set num to num + 1
				end repeat
			end try
			try
				repeat while exists window wName
					close window wName
					delay 0.1
				end repeat
			end try
		end tell # application Mail
	end repeat # with eachMessage…
end Germaine

#=====
(*
replace every occurences of d1 by d2 in text t
*)
on remplace(t, d1, d2)
	local oTIDs, l
	set {oTIDs, AppleScript's text item delimiters} to {AppleScript's text item delimiters, d1}
	set l to text items of t
	set AppleScript's text item delimiters to d2
	set t to l as text
	set AppleScript's text item delimiters to oTIDs
	return t
end remplace

#=====

I tested it only under High Sierra 10.13.6

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) dimanche 27 janvier 2019 15:41:52

Thank you, Ivan. I had a quick look at it. Mojave will likely require me to make a few tweaks. It complains that it needs “Assistive Access”. That’s easily solved, But I don’t know what lies beyond that. Will see what I can do and let you know.

It’s not only Mojave. Every OS requires Assistive Events to be enabled.
At least with Mojave and High Sierra we must do that thru the System Preference named “Security & Privacy”. We must insert AppleScript in the pane entitled “Privacy”.

I will made a small change to the script so that it may be more comfortable when saved as application under Mojave.

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) jeudi 31 janvier 2019 08:48:22

Thanks Yvan;

Just to let you know what I hope to use it for.

I receive a lot of email relating to Genealogy. I need to file these offline (eg. a NAS drive) in a way that is independent of the email program and O/S used. PDF is a great choice, providing all attachments are extracted and stored with some way of being associated with the email message. PDF also has the ability to store metadata, which means one can store the original header data inside the file, in case the file is renamed.

Will wait to see your revisions.

I added some instructions to be sure that every mail window is closed after treatment.

The script store the files this way :

2016-08-17 16.16.04 from H**** J********* - Re- nouveaux tests 17 aout.PDF

2016-08-17 16.21.27 to H**** J********* - Re- a titre d’info.PDF

2016-08-17 16.29.44 to H**** J********* - Re- nouveaux tests 17 aout.PDF
2016-08-17 16.29.44 to H**** J********* Attachment - 1 - resultat du test decrypteur.tiff

2016-08-17 18.12.26 from H**** J********* - Re- nouveaux tests 17 aout.PDF
2016-08-17 18.12.26 from H**** J********* Attachment - 1 - resultat du test decrypteur.tiff
2016-08-17 18.12.26 from H**** J********* Attachment - 2 - deuxieme essai.tiff
2016-08-17 18.12.26 from H**** J********* Attachment - 3 - 1 er essai.tiff

The messages are stored as PDF named from : date received, string “from” or “to”, name of the correspondant, the mail subject, the string “.PDF”
The attachments are stored in files named from : date received, string “from” or “to”, name of the correspondant, the string "Attachment - ", a number which is the index of the file in the list of attached files, the string " - ", the original name of the attached file.

This way, if the contents of the folder is displayed alphabetically, it’s easy to see groups of message + attached files.

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) vendredi 1 février 2019 12:11:35

Can you post the updated code you mentioned in your last post?

It sounds like it should work for me as it is.

Regards;
Gary

It’s available in message #7

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) vendredi 1 février 2019 18:21:49

Thank you. Didn’t realize that was it.

Many many thanks, it works like a breeze.
Etienne

I tested Yvan Koenig’s script in the post #7. It works on the Mojave perfect.

The title of the topic should be not Save Apple Mail And Attachments As PDF, but Save Apple Mail as PDF and its Attachments as Native Format. :slight_smile: In order not to confuse people. It already confused me…

Without any GUI scripting, Apple Mail and its attachments can easily be saved in the Raw Message Format (as EML files). All markup is saved no worse than PDF. Select any message in Mail.app and run my script.

To continue the experiment, close Mail.app and double-click on the file just created to open it and to view its contents. Try even deleting the original message. An EML file should function without it.

The script:

set outputFile to (((path to desktop folder) as text) & "Experiment.eml")

tell application "Mail"
	set aMessage to item 1 of (get selection)
	set richSource to (source of aMessage) as rich text
end tell

try -- write text to EML file
	set fileReference to open for access file outputFile with write permission
	set eof of fileReference to 0
	write richSource to fileReference
	close access fileReference
on error
	try
		close access file outputFile
	end try
end try

I apologizes but with every attempts, I got a file whose content in Mail is :
• aucun expéditeur
(Aucun objet)

The source contained:

–0000000000004ffb9c059f12ecc0
Content-Type: multipart/alternative; boundary="0000000000004ffb99059f12ecbe"

–0000000000004ffb99059f12ecbe
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Bonjour

J’esp=C3=A8re que vous allez bien , nous avons eu le bonheur d’acqu=C3=A9=
rir une
magnifique coupe dont nous aimerions avoir un peu plus de pr=C3=A9cision=
s sur
la date de sa r=C3=A9alisation.
En pi=C3=A8ce jointe quelques photos
Merci d’avance pour votre retour

Cordialement
M Aqsdfg g=C3=A9rard
Wazerty

–0000000000004ffb99059f12ecbe
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Bonjour=C2=A0

J'esp=C3=

–0000000000004ffb99059f12ecbe–
–0000000000004ffb9c059f12ecc0
Content-Type: image/jpeg; name="gerbino papillo6.jpg"
Content-Disposition: attachment; filename="gerbino papillo6.jpg"
Content-Transfer-Encoding: base64
Content-ID: <f_k6vzr20u0>
X-Attachment-Id: f_k6vzr20u0

/9j/4AAQSkZJRgABAQAASABIAAD/4QCMRXhpZgAATU0AKgAAAAgABQESAAMAAAABAAEAAAEaAAUA
AAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdpAAQAAAABAAAAWgAAAAAAAABIAAAAAQAA
AEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAABD6gAwAEAAAAAQAAAtQAAAAA/+0AOFBob3Rv
c2hvcCAzLjAAOEJJTQQEAAAAAAAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv/AABEIAtQE

Are you using a feature which really works only with Mojave or Catalina ?

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) mercredi 18 mars 2020 13:59:57

Remember to check - the EML files (.eml extension files) should be opened by Mail.app.

On my system I made second test. It works too. Maybe, it is new with Mojave and Catalina. Returned content of variable richSource (it has 1 text and 1 attached jpg file, and works fine):

From: Robert Kniazidis KNIAZIDIS.ROMPERT@gmail.com
Content-Type: multipart/alternative;
boundary=“Apple-Mail=_4E04147C-4B26-4187-AD6D-ABD0977BD6FC”
Mime-Version: 1.0 (Mac OS X Mail 12.4 (3445.104.11))
Subject: Test 2
X-Universally-Unique-Identifier: 0C01257B-513B-406B-B5BB-E122DE91B678
Message-Id: FC1ED9D9-FBC3-41CE-8B44-BB278DD26898@gmail.com
Date: Wed, 18 Mar 2020 19:38:42 +0200
To: kniazidis.rompert@gmail.com

–Apple-Mail=_4E04147C-4B26-4187-AD6D-ABD0977BD6FC
Content-Transfer-Encoding: 7bit
Content-Type: text/plain;
charset=us-ascii

ulk ou

–Apple-Mail=_4E04147C-4B26-4187-AD6D-ABD0977BD6FC
Content-Type: multipart/related;
type=“text/html”;
boundary=“Apple-Mail=_26D4488B-BE56-4C1F-ADA7-A4B3AAB65F12”

–Apple-Mail=_26D4488B-BE56-4C1F-ADA7-A4B3AAB65F12
Content-Transfer-Encoding: 7bit
Content-Type: text/html;
charset=us-ascii

ulk ou



–Apple-Mail=_26D4488B-BE56-4C1F-ADA7-A4B3AAB65F12
Content-Transfer-Encoding: base64
Content-Disposition: inline;
filename=“Fujifilm_FinePix_E500-Horned melon.jpg”
Content-Type: image/jpeg;
x-unix-mode=0755;
name=“Fujifilm_FinePix_E500-Horned melon.jpg”
Content-Id: A07039ED-0F5F-4B78-9E09-153EB6BE70AF@lan

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
r2LFzOaA5tdLHuVWpJJMX//Z
–Apple-Mail=_26D4488B-BE56-4C1F-ADA7-A4B3AAB65F12–

–Apple-Mail=_4E04147C-4B26-4187-AD6D-ABD0977BD6FC–

Here you can see 2 EML files on my screen (opened by double-clicking (My Mail.app is empty this moment. No messages in the mailboxes at all):

It’s puzzling. In every attempts the generated file was a zero bytes one.
Five hours later, testing with the same messages, it works.
Some gremlin seems to play in my machine.

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) mercredi 18 mars 2020 21:16:12