Questions tagged [apple-mail]
148 questions
0
votes
1 answer
AppleScript Question (Copy email contents, run Automator App)
I have a Mail filter that will run an Autoscript that will copy the messages content and then run a Automator App. However it is not working. It doesn't launch the Automator App or copy the contents.
So I have an email that comes in, it tells this…

michaellindahl
- 2,012
- 5
- 36
- 64
0
votes
1 answer
Python: Apple Email Content
I am developing a program in python that can read emails, my program can now read emails from GMAIL even with attachment but my program can't read the email that was sent from Apple Mail.
Unlike the email that I sent from GMAIL when I use…

Punky
- 31
- 10
0
votes
1 answer
Apple Mail application, adding multiple attachments
I am trying to add multiple attachments to an email in applescript.
I set the subject to folder and week number at the top.
set {b, c} to {"1/1/1000", 364876}
set {year:yy, month:mm, day:dd} to (current date)
set yy to text 3 thru 4 of (yy as…
0
votes
1 answer
AppleScript: Get highlighted Apple Mail message
I need to be able to get the currently highlighted message from the current message thread.
ie
thread 1
message 1
message 2
message 3 <- highlighted message
message 4
I have tried:
tell application "Mail"
set messages to selected…

iphaaw
- 6,764
- 11
- 58
- 83
0
votes
0 answers
HTML Email (Images Don't Always Display Correctly In Apple Mail)
I've been designing HTML emails for awhile now and recently came across an issue that I haven't seen posted anywhere online. I want to see if anyone else has encountered this.
NOTE: I’m using Apple Mail Version 9.3 on a MAC running OS X El Capitan…

Joe B.
- 111
- 1
- 1
- 8
0
votes
1 answer
OSX: Apple Mail App won't display new lines
I have the following code that opens apple mail app. This works well except it doesn't display new line properly at all. This is the code I am using.
NSArray *shareItems=@[@"text
text one"]; NSSharingService *service =…
text one"]; NSSharingService *service =…

Weakman10122
- 371
- 2
- 14
0
votes
2 answers
I need an easy way to extract data from a few thousand emails (apple mail)
I have about 2000 emails from a web contest my company did. All the emails are arranged in the following fashion:
You have received a new contest submission. Here are the details:
Name: Bob Jones
Email: bobjones@internet.com
Location:…

Max
- 1
0
votes
1 answer
How do I use HTML signature with Apple Mail?
I have used Mozilla Thunderbird for a long time, and created a well-polished HTML signature that works perfectly with Thunderbird.
How is it possible to use the same signature inside of Apple Mail? As far as I know, it does not support HTML…

Eric Gopak
- 1,663
- 1
- 13
- 26
0
votes
1 answer
Create new mail on Mac using Excel VBA
I need to adjust my macro described below that it runs on mac with using Apple Mail application.
Sub SendMail()
Dim OutlookApp As Object: Set OutlookApp = CreateObject("Outlook.Application")
Dim var As Variant: var = Selection.Value
Set…

Jean
- 89
- 4
- 10
0
votes
1 answer
Automatically set default "From:" account per recipient in Apple Mail
The Problem
I use Apple Mail on OS X 10.10 and have two mail accounts configured--one for work, and one for personal. More than once when I have composed a new message (not a reply), I have forgotten to check the "From:" address and sent a work…

pnomads
- 25
- 2
- 5
0
votes
1 answer
I need to convert an email address to a recipient
Need to convert an email address from Contacts into a recipient in Mail.
tell application "Contacts"
set sendTo to every person's email 1
end tell
tell application "Mail"
set mesg to make new outgoing message
set recipient of mesg to…

alexbuzzbee
- 165
- 10
0
votes
1 answer
apple script update a rule for mail, to sort e.g. newsletter
Is it possible to use apple script in mail to sort newsletter by updating a rule when I put a email for training in a specific mail folder?
in mail is a folder named "trainNewsletter"
in mail / rules is a rule "Newsletter" witch move mails into the…

andy19
- 3
- 5
0
votes
1 answer
Apple mail is hung up in Mac os Mavericks
I have recently upgraded my mac system from MacMini to MacBook Pro. Previously everything is working fine but after upgrading Apple Mail is hanging up and stops working.
Here is the step that I have done for backup my mails:
I have copied the V2…

DeveshM
- 476
- 4
- 11
0
votes
1 answer
Is it a sandbox issue? how to fix it? (I am implementing a plugin of apple mail)
Maybe this tutorial is out of date( it was written in 2009),but I cannot find a better one. While following it step by step, I was stuck at Loading a Plugin section. Apple mail failed to load the plugin.
here is a screenshot of Console's…

Grey
- 253
- 4
- 15
0
votes
1 answer
How to edit apple mail's defaults (I am implementing a plugin of apple mail)?
I am following this tutorial to learn how to implement a plugin of apple mail,but stuck at editing mail's defaults. where can I edit the settings?
The text in the tutorial is,
Although Mail includes support for Mail bundles out of the box, it…

Grey
- 253
- 4
- 15