You can have an EMail created by Thunderbird with the exported photos attached by doing the following:
- In the LR Export Dialog, choose "Go to Export Actions Folder Now" in the Post Processing Section
- Open the folder Export Actions
- Within the folder Export Actions, create a new file with a name like "AttachToThunderbirdMail.cmd"
(choose any name you want, with .cmd as extension)
- Open the new file with a text editor
- Paste the following Text into it:
Code:
if %1. == . exit
set PARAMS=[URL]file:///%1[/URL]
:loop
shift
if %1. == . goto send
set PARAMS=%PARAMS%,[URL]file:///%1[/URL]
goto loop
:send
start thunderbird.exe -compose attachment='%PARAMS%'
- Save the changes to the file
- Back in LR, choose "AttachToThunderbirdMail" (or whatever you called the file) in "After Export:"
This will open a new EMail with all the exported images as attachment in Thunderbird.
One more word about the command line for thunderbird:
You can optionally add the tags
in the line with attachment=... as in the following example line:
Code:
start thunderbird.exe -compose [EMAIL="[email protected],subject=%27Test"][email protected],subject='Test[/EMAIL] Mail',body='Hello here I am',attachment='%PARAMS%'
Beat