Apple Mail to Evernote – Japanese Version

Description

You can tag your items on the way in and direct them to the proper notebook!

This AppleScript lets you move email messages directly into Evernote from Apple Mail and, if you like, tag and sort the items on the way in!

"Does it also handle attachments?", you ask. Yes -- they are also included in the Evernote item! The script includes full HTML in the items whenever possible and the header template is also fully customizable, allowing anyone with basic HTML knowledge to make their own layout. (I kept it pretty basic)

Receive Updates With GROWL Notifications

I've also built in GROWL notifications so that you'll be able to keep track of the progress of your import. THIS SCRIPT REQUIRES THE LASTEST VERSION OF GROWL. (If you prefer not to use it, just edit out these portions of the script.)

Adding By Script Vs. Adding By Email

One fast way to get items into Evernote is simply to email them. Brett Kelly's eBook, "Evernote Essentials" provides a solid guide to how this works (See the chapter called "Evernote, Email and You") along with some other great email-related tips. So why not just forward items to your Evernote email address?

You certainly can do that -- but I think this approach is actually easier and also has a few additional benefits:

  • FASTER/SMARTER WORKFLOW. If you use Keyboard Shortcuts with this AppleScript, you'll have an workflow which is incredibly fast and makes it easy to stay organized! Personally, I use ⌘E to quickly send anything to Evernote. I can also tag and direct multiple items to a notebook by using a simple, fast dialog box instead of having to email them in one at a time (Mail handles multiple emails being forwarded by combining them to a single email). Trust me -- Archiving whole folders goes much faster when you don't have to send an email for every item!

  • PRIVACY Emailing an item into Evernote probably isn't an option if you have local, non-synchronized notebooks which contain sensitive information (or should you find yourself without an internet connection). This script moves things directly -- no internet connection required!

REQUIRED / OPTIONAL APPS

NameDescription
GROWLTHE APP STORE VERSION OF GROWL IS REQUIRED FOR THIS SCRIPT TO WORK! (If you do not have it installed, you'll get an error when you try to save this script.)
Optional Apps
FastScriptsFastScripts is a powerful script management utility which gives you instant access to all your AppleScripts by keyboard shortcut or menubar -- HIGHLY RECOMMENDED!

INSTALLATION

  1. You can save this script to /Library/Scripts/Mail Scripts and launch it using the system-wide script menu from the Mac OS X menu bar. (The script menu can be activated using the AppleScript Utility application).
  2. To use, highlight the email messages you want to archive into Evernote and run this script file.
  3. The "User Switches" at the beginning of the script allow you to customize the way it works. Take a look to familiarize yourself with the options I've put in for you!

HAVING TROUBLE? FIND A BUG?

The comment thread isn't a great way to report and diagonse individual bug reports or questions. Please click here to send a bug report directly to me.

TERMS OF USE

This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.

The Code

(*
◸ Veritrope.com
Apple Mail to Evernote - Japanese Version
VERSION 2.06
March 10, 2013

// UPDATE NOTICES
** Follow @Veritrope on Twitter, Facebook, Google Plus, and ADN for Update Notices! **.

// LIKE THIS SCRIPT?
If this AppleScript is helpful to you, please show your support here:
http://veritrope.com/support

// IMPORTANT LINKS:
-- Project Page: http://veritrope.com/code/apple-mail-to-evernote-japanese-version
-- GROWL (Required): http://bit.ly/GrowlApp
-- FastScripts (Optional): http://bit.ly/FastScripts

// REQUIREMENTS:
THE APP STORE VERSION OF GROWL IS REQUIRED FOR THIS SCRIPT TO WORK!
(If you do not have it installed, you'll get an error when you try to save this script.)
-- GROWL IS AVAILABLE FOR DOWNLOAD HERE:
-- http://bit.ly/GrowlApp

// KNOWN ISSUES:
The script sometimes has trouble with emails using non-English character encoding.
Hopefully, this is something that I will be able to improve over time — and your contributions here are welcome!

// INSTALLATION:
-- You can save this script to /Library/Scripts/Mail Scripts and launch it using the system-wide script menu from the Mac OS X menu bar. (The script menu can be activated using the AppleScript Utility application).
-- To use, highlight the email messages you want to archive into Evernote and run this script file;
-- The "User Switches" below allow you to customize the way this script works.
-- You can save this script as a service and trigger it with a keyboard shortcut.

(Optional but recommended)
Easier Keyboard Shortcut with FastScripts
-- Download and Install FastScripts here:
-- http://bit.ly/FastScripts

// CHANGELOG:

* 2.06
SWITCH FOR PLAINTEXT OPERATION (FOR NON-ENGLISH ENCODING), FIX FOR MISSING RECIPIENT NAME

* 2.05
FIX FOR LEADING SPACES IN TAG LIST

* 2.04
CHANGE TO DISPLAY MULTIPLE TO: RECIPIENTS, GROWL TWEAKS

* 2.03
FIXES AND ADJUSTMENTS FOR TAGS, ATTACHMENT OPERATIONS

* 2.02
CHANGED SOME VARIABLES TO WORK BETTER WITH "OPEN IN SCRIPT EDITOR" BUTTON

* 2.01
CONSOLIDATED SOME BASE64 CODE INTO A HANDLER, FIXED BUGS WITH ENCODING

* 2.00 FINAL
ELIMINATED MAILTAGS SUPPORT, GROWL REQUIREMENT, REWORKED HTML EMAIL TRANSFER FOR 10.7+ SYSTEMS

* 2.00 b2
BUG FIXES (USER SWITCH FOR NOTEBOOK, BETTER BASE 64 DETECTION, ATTACHMENT FIX)

* 2.00 b1
HTML MESSAGES, APPEND ATTACHMENTS, MAILTAGS, QUIET TEMP FILE REMOVAL

* 1.30 (June 5, 2010)
ATTACHMENT CREATION. LAYING TRACK FOR HTML NOTES.

* 1.20 (July 25, 2009)
STREAMLINED MENU FOR NOTE EXPORT

* 1.10 (May 6, 2009)
ACTIVATED MESSAGE LINKING/ADDED EVERNOTE ICON TO DIALOG BOX/MISC. CLEAN-UP!

* 1.01 (April 23, 2009)
FIXED TYPOGRAPHICAL ERROR

* 1.00 (April 20, 2009)
INITIAL RELEASE OF SCRIPT

// TERMS OF USE:
This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. To view a copy of this license, visit or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA
*)


(*
======================================
// USER SWITCHES
======================================
*)


-- SET THIS TO "OFF" IF YOU WANT TO SKIP THE TAGGING/NOTEBOOK DIALOG
-- AND SEND ITEMS DIRECTLY INTO YOUR DEFAULT NOTEBOOK
property tagging_Switch : "ON"

-- IF YOU'VE DISABLED THE TAGGING/NOTEBOOK DIALOG,
-- TYPE THE NAME OF THE NOTEBOOK YOU WANT TO SEND ITEM TO
-- BETWEEN THE QUOTES IF IT ISN'T YOUR DEFAULT NOTEBOOK.
-- (EMPTY SENDS TO DEFAULT)
property EVnotebook : ""

--IF YOU'D LIKE TO CHANGE THE DEFAULT TAG,
--TYPE IT BETWEEN THE QUOTES ("タグ" IS DEFAULT)
property default_Tag : "タグ"

-- SET THIS TO "ON" IF YOU WANT TO PROCESS HTML EMAILS
-- (EXPERIMENTAL FOR NON-ENGLISH ENCODED EMAILS)
property HTML_Switch : "OFF"

(*
======================================
// OTHER PROPERTIES
======================================
*)

property successCount : 0
property growl_Running : "false"
property myTitle : "Mail Item"
property theMessages : {}
property thisMessage : ""
property itemNum : "0"
property attNum : "0"
property errNum : "0"
property userTag : ""
property EVTag : {}
property multiHTML : ""
property theSourceItems : {}
property mySource : ""
property decode_Success : ""
property finalHTML : ""
property myHeaders : ""
property mysource_Paragraphs : {}
property base64_Raw : ""

(*
======================================
// MAIN PROGRAM
======================================
*)


--RESET ITEMS
set successCount to "0"
set errNum to "0"
set AppleScript's text item delimiters to ""

try
--CHECK FOR GROWL
my Growl_Check()

--SET UP ACTIVITIES
my item_Check()

--MESSAGES SELECTED?
if theMessages is not {} then

--GET FILE COUNT
my item_Count(theMessages)

--ANNOUNCE THE EXPORT OF ITEMS
my process_Items(itemNum, attNum)

--PROCESS MAIL ITEMS FOR EXPORT
my mail_Process(theMessages)

else
--NO MESSAGES SELECTED
set successCount to -1
end if

--GROWL RESULTS
my growl_Growler(growl_Running, successCount, errNum)

-- ERROR HANDLING
on error errText number errNum
if growl_Running is true then
if errNum is -128 then

-- GROWL FAILURE FOR CANCEL
tell application "Growl"
notify with name ¬
"Failure Notification" title ¬
"User Cancelled" description ¬
"Failed to export!" application name "Mail to Evernote"
end tell
else

-- GROWL FAILURE FOR ERROR
tell application "Growl"
notify with name ¬
"Failure Notification" title ¬
"書き出し失敗" description "次のエラーで書き出しに失敗しました:" & return & myTitle & ¬
"" " & return & errText ¬
application name "
Mail to Evernote"
end tell
end if

else if growl_Running is false then

-- NON-GROWL ERROR MSG. FOR ERROR
display dialog "
アイテムの読み込みに失敗しました:" & errNum & return & errText with icon 0
end if
end try

(*
======================================
// PREPARATORY SUBROUTINES
=======================================
*)

--APP DETECT
on appIsRunning(appName)
tell application "
System Events" to (name of processes) contains appName
end appIsRunning

--SET UP ACTIVITIES
on item_Check()
set myPath to (path to home folder)
tell application "
Mail"
try
set theMessages to selection
end try
end tell
end item_Check

--GET COUNT OF ITEMS AND ATTACHMENTS
on item_Count(theMessages)
tell application "
Mail"
set itemNum to count of theMessages
set attNum to 0
repeat with theMessage in theMessages
set attNum to attNum + (count of mail attachment of theMessage)
end repeat
end tell
end item_Count

(*
======================================
// TAGGING AND NOTEBOOK SUBROUTINES
=======================================
*)

--TAGGING AND NOTEBOOK SELECTION DIALOG (JP)
on tagging_Dialog()
try
display dialog "
" & ¬
"
タグを入力(コロンかコンマで分割)" with title "Apple Mail から Evernote へ書き出し" default answer default_Tag buttons {"既定のノートブックに作成", "ノートブックを選択", "キャンセル"} default button "既定のノートブックに作成" cancel button ¬
"
キャンセル" with icon path to resource "Evernote.icns" in bundle (path to application "Evernote")
set dialogresult to the result
set userInput to text returned of dialogresult
set ButtonSel to button returned of dialogresult
set theDelims to {"
:", ","}
set userTag to my Tag_List(userInput, theDelims)
if ButtonSel is "
ノートブックを選択" then set EVnotebook to my Notebook_List()
end try

--ASSEMBLE LIST OF TAGS
set theTags to my Tag_List(userInput, theDelims)

--FINAL CHECK AND FORMATTING OF TAGS
set EVTag to my Tag_Check(theTags)

--SELECT NOTEBOOK
if ButtonSel is "
Select Notebook from List" then set EVnotebook to my Notebook_List()
end tagging_Dialog

--GET EVERNOTE'S DEFAULT NOTEBOOK
on default_Notebook()
tell application "
Evernote"
set get_defaultNotebook to every notebook whose default is true
if EVnotebook is "
" then
set EVnotebook to name of (item 1 of get_defaultNotebook) as text
end if
end tell
end default_Notebook

--TAG SELECTION SUBROUTINE
on Tag_List(userInput, theDelims)
set oldDelims to AppleScript's text item delimiters
set theList to {userInput}
repeat with aDelim in theDelims
set AppleScript's text item delimiters to aDelim
set newList to {}
repeat with anItem in theList
set newList to newList & text items of anItem
end repeat
set theList to newList
end repeat
set AppleScript's text item delimiters to oldDelims
return theList
end Tag_List

--CREATES TAGS IF THEY DON'T EXIST
on Tag_Check(theTags)
tell application "
Evernote"
set finalTags to {}
repeat with theTag in theTags
if (not (tag named theTag exists)) then
set makeTag to make tag with properties {name:theTag}
set end of finalTags to makeTag
else
set end of finalTags to tag theTag
end if
end repeat
end tell
return finalTags
end Tag_Check

--EVERNOTE NOTEBOOK SELECTION SUBROUTINE (JP)
on Notebook_List()
tell application "
Evernote"
activate
set listOfNotebooks to {} (*PREPARE TO GET EVERNOTE'S LIST OF NOTEBOOKS *)
set EVNotebooks to every notebook (*GET THE NOTEBOOK LIST *)
repeat with currentNotebook in EVNotebooks
set currentNotebookName to (the name of currentNotebook)
copy currentNotebookName to the end of listOfNotebooks
end repeat
set Folders_sorted to my simple_sort(listOfNotebooks) (*SORT THE LIST *)
set SelNotebook to choose from list of Folders_sorted with title "
Evernote のノートブックを選択" with prompt ¬
"
現在の Evernote ノートブック" OK button name "OK" cancel button name "新規ノートブック" (*USER SELECTION FROM NOTEBOOK LIST *)
if (SelNotebook is false) then (*CREATE NEW NOTEBOOK OPTION *)
set userInput to ¬
text returned of (display dialog "
新規ノートブック名を入力:" default answer "")
set EVnotebook to userInput
else
set EVnotebook to item 1 of SelNotebook
end if
end tell
end Notebook_List

(*
======================================
// UTILITY SUBROUTINES
=======================================
*)

-- EXTRACTION SUBROUTINE
on extractBetween(SearchText, startText, endText)
set tid to AppleScript's text item delimiters
set AppleScript's text item delimiters to startText
set endItems to text of text item -1 of SearchText
set AppleScript's text item delimiters to endText
set beginningToEnd to text of text item 1 of endItems
set AppleScript's text item delimiters to tid
return beginningToEnd
end extractBetween

--SORT SUBROUTINE
on simple_sort(my_list)
set the index_list to {}
set the sorted_list to {}
repeat (the number of items in my_list) times
set the low_item to "
"
repeat with i from 1 to (number of items in my_list)
if i is not in the index_list then
set this_item to item i of my_list as text
if the low_item is "
" then
set the low_item to this_item
set the low_item_index to i
else if this_item comes before the low_item then
set the low_item to this_item
set the low_item_index to i
end if
end if
end repeat
set the end of sorted_list to the low_item
set the end of the index_list to the low_item_index
end repeat
return the sorted_list
end simple_sort

(*
======================================
// PROCESS MAIL ITEMS SUBROUTINE
=======================================
*)

on mail_Process(theMessages)
--CHECK DEFAULT NOTEBOOK
my default_Notebook()
tell application "
Mail"
try
if tagging_Switch is "
ON" then my tagging_Dialog()

repeat with thisMessage in theMessages
try
--GET MESSAGE INFO
set myTitle to the subject of thisMessage
set myContent to the content of thisMessage
set mySource to the source of thisMessage
set ReplyAddr to the reply to of thisMessage
set EmailDate to the date received of thisMessage
set allRecipients to (every to recipient of item 1 of thisMessage)

--ASSEMBLE ALL TO: RECIPENTS FOR HEADER
set toRecipients to "
"
repeat with allRecipient in allRecipients
set toName to "
"
set toName to (name of allRecipient)
if toName is missing value then set toName to "
"
set toEmail to (address of allRecipient)
set toCombined to toName & space & "
(" & toEmail & ")
"
set toRecipients to (toRecipients & toCombined as string)
end repeat

--CREATE MAIL MESSAGE URL
set theRecipient to "
"
set ex to "
"
set MsgLink to "
"
try
set theRecipient to "
"
set theRecipient to the address of to recipient 1 of thisMessage
set MsgLink to "
message://%3c" & thisMessage's message id & "%3e"
if theRecipient is not "
" then set ex to my extractBetween(ReplyAddr, "<", ">") -- extract the Address
end try

--HTML EMAIL FUNCTIONS
set theBoundary to my extractBetween(mySource, "
boundary="", """)
set theMessageStart to (return & "
--" & theBoundary)
set theMessageEnd to ("--" & theBoundary & return & "Content-Type:")
set paraSource to paragraphs of mySource
set myHeaderlines to paragraphs of (all headers of thisMessage as rich text)

--GET CONTENT TYPE
repeat with myHeaderline in myHeaderlines
if myHeaderline starts with "Content-Type: " then
set myHeaders to my extractBetween(myHeaderline, "Content-Type: ", ";")
end if
end repeat
set cutSource to my stripHeader(paraSource, myHeaderlines)
set evHTML to cutSource
end try

--MAKE HEADER TEMPLATE
set the_Template to "
<table border="
\&quot;1\&quot;" width="\&quot;100%\&quot;" cellspacing="\&quot;0\&quot;" cellpadding="\&quot;2\&quot;">
<tbody>
<tr bgcolor="
\&quot;#ffffff\&quot;">
<td valign="
\&quot;top\&quot;"><strong>差出人: </strong></td>
<td valign="
\&quot;top\&quot;"><a href="\&quot;mailto:&quot;">" &amp; ex &amp; "</a></td>
</tr>
<tr bgcolor="
\&quot;#ffffff\&quot;">
<td valign="
\&quot;top\&quot;"><strong>件名: </strong></td>
<td valign="
\&quot;top\&quot;"><strong>" &amp; myTitle &amp; "</strong></td>
</tr>
<tr bgcolor="
\&quot;#ffffff\&quot;">
<td valign="
\&quot;top\&quot;"><strong>受信日時: </strong></td>
<td valign="
\&quot;top\&quot;">" &amp; EmailDate &amp; "</td>
</tr>
<tr bgcolor="
\&quot;#ffffff\&quot;">
<td valign="
\&quot;top\&quot;"><strong>宛先:</strong></td>
<td valign="
\&quot;top\&quot;">" &amp; toRecipients &amp; "</td>
</tr>
</tbody>
</table>

<hr />

"


--SEND ITEM TO EVERNOTE SUBROUTINE
my make_Evernote(myTitle, EVTag, EmailDate, MsgLink, myContent, mySource, theBoundary, theMessageStart, theMessageEnd, myHeaders, thisMessage, evHTML, EVnotebook, the_Template)

end repeat
end try
end tell
end mail_Process

(*
======================================
// MAKE ITEM IN EVERNOTE SUBROUTINE
=======================================
*)


on make_Evernote(myTitle, EVTag, EmailDate, MsgLink, myContent, mySource, theBoundary, theMessageStart, theMessageEnd, myHeaders, thisMessage, evHTML, EVnotebook, the_Template)
tell application "Evernote"
try
--IS IT A TEXT EMAIL?
if myHeaders contains "text/plain" then
set n to create note with html the_Template title myTitle tags EVTag notebook EVnotebook
tell n to append text myContent
set creation date of n to EmailDate
set source URL of n to MsgLink

-- IF HTML PROCESSING IS TURNED TO "OFF", PROCESS
-- AS PLAINTEXT (USEFUL FOR NON-ENGLISH ENCODED EMAILS)
else if HTML_Switch is "OFF" then
set n to create note with html the_Template title myTitle notebook EVnotebook
if EVTag is not {} then assign EVTag to n
tell n to append text myContent
set creation date of n to EmailDate
set source URL of n to MsgLink

--IS IT MULTIPART ALTERNATIVE?
else if myHeaders contains "multipart/alternative" then

--CHECK FOR BASE64
set base64Detect to false
set base64MsgStr to "Content-Transfer-Encoding: base64"
set base64ContentType to "Content-Type: text"
set base64MsgOffset to offset of base64MsgStr in mySource
set base64ContentOffset to offset of base64ContentType in mySource
set base64Offset to base64MsgOffset - base64ContentOffset as real
set theOffset to base64Offset as number
if theOffset is not greater than or equal to 150 then
if theOffset is greater than -50 then set base64Detect to true
end if

--IF MESSAGE IS BASE64 ENCODED...
if base64Detect is true then
set multiHTML to my extractBetween(mySource, "Content-Transfer-Encoding: base64", theBoundary)

--STRIP OUT CONTENT-DISPOSITION, IF NECESSARY
if multiHTML contains "Content-Disposition: inline" then set multiHTML to my extractBetween(multiHTML, "Content-Disposition: inline", theBoundary)
if multiHTML contains "Content-Transfer-Encoding: 7bit" then set multiHTML to my extractBetween(multiHTML, "Content-Transfer-Encoding: 7bit", theBoundary)

--DECODE BASE64
set baseHTML to do shell script "echo " &amp; (quoted form of multiHTML) &amp; "| openssl base64 -d"

--MAKE NOTE IN EVERNOTE
set n to create note with html the_Template title myTitle tags EVTag notebook EVnotebook
tell n to append html baseHTML
set creation date of n to EmailDate
set source URL of n to MsgLink
else

--IF MESSAGE IS NOT BASE64 ENCODED...
set finalHTML to my htmlFix(mySource, theBoundary, myContent)
if decode_Success is true then

--MAKE NOTE IN EVERNOTE
set n to create note with html the_Template title myTitle tags EVTag notebook EVnotebook
tell n to append html finalHTML
set creation date of n to EmailDate
set source URL of n to MsgLink
else

--MAKE NOTE IN EVERNOTE
set n to create note with html the_Template title myTitle tags EVTag notebook EVnotebook
tell n to append text myContent
set creation date of n to EmailDate
set source URL of n to MsgLink
end if
end if

--IS IT MULTIPART MIXED?
else if myHeaders contains "multipart" then
if mySource contains "Content-Type: text/html" then

--CHECK FOR BASE64
set base64Detect to false
set base64MsgStr to "Content-Transfer-Encoding: base64"
set base64ContentType to "Content-Type: text"
set base64MsgOffset to offset of base64MsgStr in mySource
set base64ContentOffset to offset of base64ContentType in mySource
set base64Offset to base64MsgOffset - base64ContentOffset as real
set theOffset to base64Offset as number
if theOffset is not greater than or equal to 50 then
if theOffset is greater than -50 then set base64Detect to true
end if

--IF MESSAGE IS BASE64 ENCODED...
if base64Detect is true then
--USE TID TO QUICKLY ISOLATE BASE64 DATA
set oldDelim to AppleScript's text item delimiters
set AppleScript's text item delimiters to "Content-Type: text/html"
set base64_Raw to second text item of mySource
set AppleScript's text item delimiters to linefeed &amp; linefeed
set base64_Raw to second text item of base64_Raw
set AppleScript's text item delimiters to "-----"
set multiHTML to first text item of base64_Raw
set AppleScript's text item delimiters to oldDelim

--DECODE BASE64
set baseHTML to do shell script "echo " &amp; (quoted form of multiHTML) &amp; "| openssl base64 -d"

--MAKE NOTE IN EVERNOTE
set n to create note with html the_Template title myTitle tags EVTag notebook EVnotebook
tell n to append html baseHTML
set creation date of n to EmailDate
set source URL of n to MsgLink

--IF MESSAGE IS NOT BASE64 ENCODED...
else if base64Detect is false then
set finalHTML to my htmlFix(mySource, theBoundary, myContent)
if decode_Success is true then

--MAKE NOTE IN EVERNOTE
set n to create note with html the_Template title myTitle tags EVTag notebook EVnotebook
tell n to append html finalHTML
set creation date of n to EmailDate
set source URL of n to MsgLink
else

--MAKE NOTE IN EVERNOTE
set n to create note with html the_Template title myTitle tags EVTag notebook EVnotebook
tell n to append text myContent
set creation date of n to EmailDate
set source URL of n to MsgLink
end if
end if

else if mySource contains "text/plain" then

--MAKE NOTE IN EVERNOTE
set n to create note with html the_Template title myTitle tags EVTag notebook EVnotebook
tell n to append text myContent
set creation date of n to EmailDate
set source URL of n to MsgLink

end if -- MULTIPART MIXED

--OTHER TYPES OF HTML-ENCODING
else
set multiHTML to my extractBetween(evHTML, "", "")
set finalHTML to my htmlFix(multiHTML, theBoundary, myContent) as text

--MAKE NOTE IN EVERNOTE
set n to create note with html the_Template title myTitle tags EVTag notebook EVnotebook
tell n to append html finalHTML
set creation date of n to EmailDate
set source URL of n to MsgLink

--END OF MESSAGE PROCESSING
end if

--START OF ATTACHMENT PROCESSING
tell application "Mail"
--IF ATTACHMENTS PRESENT, RUN ATTACHMENT SUBROUTINE
if thisMessage's mail attachments is not {} then my attachment_process(thisMessage, n)
end tell
--ITEM HAS FINISHED! COUNT IT AS A SUCCESS!
set successCount to successCount + 1
end try
end tell
end make_Evernote

(*
======================================
// ATTACHMENT SUBROUTINES
=======================================
*)


--FOLDER EXISTS?
on f_exists(ExportFolder)
try
set myPath to (path to home folder)
get ExportFolder as alias
set SaveLoc to ExportFolder
on error
tell application "Finder" to make new folder with properties {name:"Temp Export From Mail"}
end try
end f_exists

--ATTACHMENT PROCESSING
on attachment_process(thisMessage, n)
tell application "Mail"

--MAKE SURE TEXT ITEM DELIMITERS ARE DEFAULT
set AppleScript's text item delimiters to ""

--TEMP FILES PROCESSED ON THE DESKTOP
set ExportFolder to ((path to desktop folder) &amp; "Temp Export From Mail:") as string
set SaveLoc to my f_exists(ExportFolder)

--PROCESS THE ATTACHMENTS
set theAttachments to thisMessage's mail attachments
set attCount to 0
repeat with theAttachment in theAttachments
set theFileName to ExportFolder &amp; theAttachment's name
try
save theAttachment in theFileName
end try
tell application "Evernote"
tell n to append attachment file theFileName
end tell

--SILENT DELETE OF TEMP FILE
set trash_Folder to path to trash folder from user domain
do shell script "mv " &amp; quoted form of POSIX path of theFileName &amp; space &amp; quoted form of POSIX path of trash_Folder

end repeat

--SILENT DELETE OF TEMP FOLDER
set success to my trashfolder(SaveLoc)

end tell
end attachment_process

--SILENT DELETE OF TEMP FOLDER (THANKS MARTIN MICHEL!)
on trashfolder(SaveLoc)
try
set trashfolderpath to ((path to trash) as Unicode text)
set srcfolderinfo to info for (SaveLoc as alias)
set srcfoldername to name of srcfolderinfo
set SaveLoc to quoted form of POSIX path of SaveLoc
set counter to 0
repeat
if counter is equal to 0 then
set destfolderpath to trashfolderpath &amp; srcfoldername &amp; ":"
else
set destfolderpath to trashfolderpath &amp; srcfoldername &amp; " " &amp; counter &amp; ":"
end if
try
set destfolderalias to destfolderpath as alias
on error
exit repeat
end try
set counter to counter + 1
end repeat
set destfolderpath to quoted form of POSIX path of destfolderpath
set command to "ditto " &amp; SaveLoc &amp; space &amp; destfolderpath
do shell script command
-- this won't be executed if the ditto command errors
set command to "rm -r " &amp; SaveLoc
do shell script command
return true
on error
return false
end try
end trashfolder

(*
======================================
// HTML CLEANUP SUBROUTINES
=======================================
*)


--HEADER STRIP (THANKS DOMINIK!)
on stripHeader(paraSource, myHeaderlines)

-- FIND THE LAST NON-EMPTY HEADER LINE
set lastheaderline to ""
set n to count (myHeaderlines)
repeat while (lastheaderline = "")
set lastheaderline to item n of myHeaderlines
set n to n - 1
end repeat

-- COMPARE HEADER TO SOURCE
set sourcelength to (count paraSource)
repeat with n from 1 to sourcelength
if (item n of paraSource is equal to "") then exit repeat
end repeat

-- STRIP OUT THE HEADERS
set cutSourceItems to (items (n + 1) thru sourcelength of paraSource)
set oldDelims to AppleScript's text item delimiters
set AppleScript's text item delimiters to return
set cutSource to (cutSourceItems as text)
set AppleScript's text item delimiters to oldDelims

return cutSource

end stripHeader

--HTML FIX
on htmlFix(evHTML, theBoundary, myContent)

set oldDelims to AppleScript's text item delimiters
set multiHTML to evHTML as string

--TEST FOR / STRIP OUT HEADER
set paraSource to paragraphs of multiHTML
if item 1 of paraSource contains "Received:" then
set myHeaderlines to (item 1 of paraSource)
set multiHTML to my stripHeader(paraSource, myHeaderlines)
end if

--TRIM ENDING
if multiHTML contains "" then
set multiHTML to my extractBetween(multiHTML, "Content-Type: text/html", "")
else
set multiHTML to my extractBetween(multiHTML, "Content-Type: text/html", theBoundary)
end if
set paraSource to paragraphs of multiHTML

--TEST FOR / STRIP OUT LEADING SEMI-COLON
if item 1 of paraSource contains ";" then
set myHeaderlines to (item 1 of paraSource)
set multiHTML to my stripHeader(paraSource, myHeaderlines)
set paraSource to paragraphs of multiHTML
end if

--TEST FOR EMPTY LINE / CLEAN SUBSEQUENT ENCODING INFO, IF NECESSARY
if item 1 of paraSource is "" then
--TEST FOR / STRIP OUT CONTENT-TRANSFER-ENCODING
if item 2 of paraSource contains "Content-Transfer-Encoding" then
set myHeaderlines to (item 2 of paraSource)
set multiHTML to my stripHeader(paraSource, myHeaderlines)
set paraSource to paragraphs of multiHTML
end if
--TEST FOR / STRIP OUT CHARSET
if item 2 of paraSource contains "charset" then
set myHeaderlines to (item 2 of paraSource)
set multiHTML to my stripHeader(paraSource, myHeaderlines)
set paraSource to paragraphs of multiHTML
end if
end if

--TEST FOR / STRIP OUT CONTENT-TRANSFER-ENCODING
if item 1 of paraSource contains "Content-Transfer-Encoding" then
set myHeaderlines to (item 1 of paraSource)
set multiHTML to my stripHeader(paraSource, myHeaderlines)
set paraSource to paragraphs of multiHTML
end if

--TEST FOR / STRIP OUT CHARSET
if item 1 of paraSource contains "charset" then
set myHeaderlines to (item 1 of paraSource)
set multiHTML to my stripHeader(paraSource, myHeaderlines)
set paraSource to paragraphs of multiHTML
end if

--CLEAN CONTENT
set AppleScript's text item delimiters to theBoundary
set theSourceItems to text items of multiHTML
set AppleScript's text item delimiters to ""
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "="
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to "%"
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "%""
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to "
=""
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "%" &amp; (ASCII character 13)
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to ""
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "%%"
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to "%"
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "%" &amp; (ASCII character 10)
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to ""
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "%0A"
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to ""
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "%09"
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to ""
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "%C2%A0"
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to "&nbsp;"
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "%20"
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to " "
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to (ASCII character 10)
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to ""
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "="
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to "="
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "$"
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to "$"
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to "'"
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to "'"
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to """
set theSourceItems to text items of theEncoded
set AppleScript's text item delimiters to "
\\""
set theEncoded to theSourceItems as text

set AppleScript's text item delimiters to oldDelims

set trimHTML to my extractBetween(theEncoded, "", "")

set theHTML to myContent

try
set decode_Success to false

--UTF-8 CONV
set NewEncodedText to do shell script "echo " &amp; quoted form of trimHTML &amp; " | iconv -t UTF-8 "
set the_UTF8Text to quoted form of NewEncodedText

--URL DECODE CONVERSION
set theDecodeScript to "php -r "echo urldecode(" &amp; the_UTF8Text &amp; ");"" as text
set theDecoded to do shell script theDecodeScript
set finalHTML to theDecoded
set decode_Success to true
return finalHTML
end try

end htmlFix

(*
======================================
// GROWL SUBROUTINES
=======================================
*)


--CHECK FOR GROWL
on Growl_Check()
if appIsRunning("Growl") then
set growl_Running to true
tell application "Growl"
set allNotificationsFiles to {"Import To Evernote", "Success Notification", "Failure Notification"}
set enabledNotificationsFiles to {"Import To Evernote", "Success Notification", "Failure Notification"}
register as application ¬
"Mail to Evernote" all notifications allNotificationsFiles ¬
default notifications enabledNotificationsFiles ¬
icon of application "Evernote"
end tell
end if
end Growl_Check

--ANNOUNCE THE COUNT OF TOTAL ITEMS TO EXPORT
on process_Items(itemNum, attNum)
set attPlural to ""
if attNum = 0 then
set attNum to "No"
else if attNum &gt; 1 then
set attPlural to "s"
end if
tell application "Finder"
if growl_Running is true then
set Plural_Test to (itemNum) as number
if Plural_Test is greater than 1 then
tell application "Growl"
notify with name ¬
"Import To Evernote" title ¬
"Import To Evernote Started" description "Now Processing " &amp; itemNum &amp; " Items with " &amp; attNum &amp; ¬
" attachment" &amp; attPlural &amp; "." application name ¬
"Mail to Evernote" identifier "EVERNOTE" --image from location growl_Icon
end tell
else
tell application "Growl"
notify with name ¬
"Import To Evernote" title ¬
"Import To Evernote Started" description "Now Processing " &amp; itemNum &amp; " Item With " &amp; attNum &amp; ¬
" Attachment" &amp; attPlural &amp; "." application name ¬
"Mail to Evernote" identifier "EVERNOTE" --image from location growl_Icon
end tell
end if
end if
end tell --FINDER
end process_Items

--GROWL RESULTS
on growl_Growler(growl_Running, successCount, errNum)
if growl_Running is true then
tell application "Growl" -- GROWL SUCCESS
set Plural_Test to (successCount) as number

if Plural_Test is -1 then
notify with name ¬
"Failure Notification" title ¬
"Import Failure" description "No Items Selected From Mail!" application name ¬
¬
"Mail to Evernote"

else if Plural_Test is 0 then
notify with name ¬
"Failure Notification" title ¬
"読み込み失敗" description ¬
"ヘッドラインまたはタブが選択されていません!" application name "Mail to Evernote"

else if Plural_Test ≥ 1 then
notify with name ¬
"Success Notification" title ¬
"書き出し成功" description " " &amp; successCount &amp; ¬
" 件のメッセージを Evernote に書き出しました!" application name "Mail to Evernote"

end if
end tell
set itemNum to "0"
end if
end growl_Growler