Apple Mail to Markdown #apple #mail #email #markdown #applescript #joplin #backup #cloudstorage
Mon, Mar 01 2021, 10:20 Apple, AppleScript, Email, Mac OS X, macOS, programming, software PermalinkImport your Apple Mail emails into Joplin with my Send E-Mail to Markdown script:.
Feel free to improve it!
Comments
Apple Mail to Evernote #apple #mail #email @evernote #evernote #applescript #veritrope #backup #cloudstorage
Mon, Feb 25 2019, 10:37 Apple, AppleScript, Email, Mac OS X, programming, software PermalinkSome fixes and improvements in the Send E-Mail to Evernote script:
- Replaced Growl support and modal dialog messages with standard mac OS Notifications.
More info on the download page.
Save and Restore Mac OS X Finder Windows, with Tabs and Positions #macos #mojave #finder #windows #save #restore #positions #contents
Thu, Feb 07 2019, 10:41 Apple, AppleScript, Mac, Mac OS X, programming, software PermalinkA new version of my Save and Restore AppleScripts for the macOS Finder is released.
It contains a fix for the way windows are indexed in macOS 10.14 Mojave.
You can download them from this page, second entry.
Apple Mail and Microsoft Outlook to Evernote
Mon, Jan 02 2017, 10:29 Apple, AppleScript, Email, Mac OS X, programming, software PermalinkBg fix in the Send E-Mail to Evernote script:
- Some splitting needed with multipart/alternative Base64-encoded e-mails.
More info on the download page.
- Some splitting needed with multipart/alternative Base64-encoded e-mails.
More info on the download page.
Save and Restore Mac OS X Finder Windows, with Tabs and Positions
Wed, Sep 21 2016, 08:57 Apple, AppleScript, Mac OS X, programming, software PermalinkSince Apple released Mavericks (10.9), the Finder doesn't save and restore its open windows, and the tabs inside these windows. I find this a real nuisance and it wonders me why Apple haven't been able to fix this. I tried writing 'defaults' settings, with no effect.
Anyway, then I decided to write my own solution, in AppleScript. You can download them from this page, second entry.
Anyway, then I decided to write my own solution, in AppleScript. You can download them from this page, second entry.
Make a new folder inside a selected folder with Applescript
Fri, Jul 01 2016, 11:27 Apple, AppleScript, Disk, Mac OS X, programming, software PermalinkI wrote an Applescript with which one can create a new folder inside a current selected folder, or inside a current window or inside a folder containing a selected item.
You can read more and copy the code from my Scripting-page.
You can read more and copy the code from my Scripting-page.
Apple Mail and Microsoft Outlook to Evernote
Tue, May 31 2016, 18:49 Apple, AppleScript, Email, Mac OS X, programming, software PermalinkToday I modified a copy of my version of the Send E-Mail to Evernote script to work with Microsoft Outlook on Mac OS X.
Since I now have two scripts, I renamed them accordingly :
More info on the download page.
Since I now have two scripts, I renamed them accordingly :
- Send E-Mail (Apple Mail) to Evernote
- Send E-Mail (MS Outlook) to Evernote
More info on the download page.
E-Mail to Evernote
Mon, Dec 22 2014, 16:25 Apple, AppleScript, Email, Mac OS X, programming, software PermalinkI fixed some other flaws in my version of the Send E-Mail to Evernote.scpt:
Update 22 dec 2014:
- I repaired a situation where a piece of a HTML-email 'header' is no header, but contains a <style> … </style> segment, which contains semi-colons and which does not contain ampersands. And that is where the script crashed. This is the case with 'Order confirmation'-emails coming from DAZ 3D. I added the test if the part does also not contain a } and then it went through. Fixed. Now wait for the next email-formatting-idiocrazy for which the script has no solution.
See also my previous posts regarding this script.
Update 22 dec 2014:
- I repaired a situation where a piece of a HTML-email 'header' is no header, but contains a <style> … </style> segment, which contains semi-colons and which does not contain ampersands. And that is where the script crashed. This is the case with 'Order confirmation'-emails coming from DAZ 3D. I added the test if the part does also not contain a } and then it went through. Fixed. Now wait for the next email-formatting-idiocrazy for which the script has no solution.
See also my previous posts regarding this script.
E-Mail to Evernote
Wed, Aug 13 2014, 11:41 Apple, AppleScript, Email, Mac OS X, programming, software PermalinkI fixed some other flaws in my version of the Send E-Mail to Evernote.scpt:
Update 13 aug 2014:
- I repaired a situation where there is no content-type found in the email headers. I now set it to text/plain in such a case.
Update 5 aug 2014:
- I repaired the strange time formatting (1=3=4=5 instead of 1345) when adding multiple email messages at once.
- And I added a dialog when the script has successfully finished processing for when Growl is not active.
See also my previous posts.
Update 13 aug 2014:
- I repaired a situation where there is no content-type found in the email headers. I now set it to text/plain in such a case.
Update 5 aug 2014:
- I repaired the strange time formatting (1=3=4=5 instead of 1345) when adding multiple email messages at once.
- And I added a dialog when the script has successfully finished processing for when Growl is not active.
See also my previous posts.
E-Mail to Evernote
Fri, Jul 25 2014, 14:33 Apple, AppleScript, Email, Mac OS X, programming, software PermalinkI fixed a bug in the Send E-Mail to Evernote.scpt where it would crash if the HTML at some point would contain or other ISO encoded characters. You can download a new version here.
If you maintain your own changes in this script, here's the fix. Change the following lines inside the function htmlFix:
--TEST FOR / STRIP OUT LEADING SEMI-COLON
if item 1 of paraSource contains ";" then
into this:
--TEST FOR / STRIP OUT LEADING SEMI-COLON (skip stuff)
if item 1 of paraSource contains ";" and item 1 of paraSource does not contain "&" then
If you maintain your own changes in this script, here's the fix. Change the following lines inside the function htmlFix:
--TEST FOR / STRIP OUT LEADING SEMI-COLON
if item 1 of paraSource contains ";" then
into this:
--TEST FOR / STRIP OUT LEADING SEMI-COLON (skip stuff)
if item 1 of paraSource contains ";" and item 1 of paraSource does not contain "&" then