Search the Community
Showing results for tags 'apple mail'.
Found 3 results
-
(iOS) copy and pasting of images from Evernote App to Apple Mail App causes the images to be missing from the recipient's end. It's not an Apple Mail issue, because Evernote stores the images in iOS differently, i've checked with other Evernote users, and are experiencing same issues. Please advise
- 2 replies
-
- apple mail
- copy
-
(and 2 more)
Tagged with:
-
Hi, following a discussion requesting the ability to link Apple Mail messages into Evernote, I post this applescript. The procedure is: select an evernote Note (target) select one or more message(s) in Apple's Mail run the script. Link(s) will be created in the selected Evernote Note pointing to the Mail message(s). The link will work on any other mac having the same Mail account and even on iOS devices (provided the message is one of the most recent ones). Feel free to use it and modify at your convenience. set _links to {} set _Titles to {} set _dates to {} tell application "Mail" set _sel to get selection repeat with _msg in _sel set _messageURL to "message:\\%3c" & _msg's message id & "%3e" set end of _links to _messageURL set myTitle to the subject of _msg set end of _Titles to myTitle set theDate to date received of _msg set theString to ((time string of theDate) & " " & (day of theDate) as string) & " " & (month of theDate) as string set theAuthor to sender of _msg set theString to theString & " - " & theAuthor & " - " set end of _dates to theString end repeat set AppleScript's text item delimiters to return set the clipboard to (_links as string) end tell tell application "Evernote" activate try set theNotes to selection repeat with thisNote in theNotes set theHTML to HTML content of thisNote repeat with n from 1 to count of _links set _messageURL to item n of _links set theTitle to item n of _Titles set theDate to item n of _dates -- append thisNote html "<div><b><a href=" & _messageURL & ">" & theTitle & "</a></b></div>" set theHTML to "<div><b>" & theDate & " <a href=" & _messageURL & ">" & theTitle & "</a></b></div>" & theHTML set HTML content of thisNote to theHTML end repeat end repeat end try end tell
-
Hi everyone, Sorry if the title is a bit confusing. I have managed to set up rules in Apple Mail that send certain messages from the app into Evernote, automatically, according to some rules. It works just fine, except for the part that I always end up having to tag each note and send them to their corresponding notebooks. I know that, if I want to add a note to Evernote using email, I can manually set both the notebook, using @ before the notebook name, and the tags, just by adding # before each tag on the email message Subject. What I would like to know is if any of you know how to build a script that automates this process. I mean, when I build the rule in Apple Mail, there's the option to add a script, so I guess it would be possible to create one that tells the app to set the Subject with the @Notebookname and #Tagname for that rule. You think this is possible? Thank you so much! Rui