Questions tagged [apple-mail]

148 questions
0
votes
0 answers

Mass mail using AppleScript + CSV...But all emails have increased quote level on iOS

I'm trying to send personalized, individual emails to a list of people on a CSV file using an AppleScript + Apple Mail. Everything's working great, except that the sent messages are displaying with the first quote level on iOS (and in other mail…
Tyler
  • 1
0
votes
1 answer

How to prefill formatted html when opening email client?

First I create the formatted html: onClick={(_) => { const content = `Nézd mit találtam ..
János
  • 32,867
  • 38
  • 193
  • 353
0
votes
0 answers

replyto email is sometimes ignored by Apple Mail

My client uses Apple Mail on his iPhone (iPhone 8, iOS 13.3) to respond to incoming website emails where we have a PHPMailer contact form. About half the time when he replies, the "replyto" email address is ignored by Mail and the "from" address is…
chillywilly
  • 405
  • 3
  • 11
0
votes
1 answer

Apple Mail Client - Breaks HTML tag

I am using VBA to loop through a range, populate a email body & dynamic link, then send to the rows email. Set OutApp = CreateObject("Outlook.Application") Set OutMail = OutApp.CreateItem(0) With OutMail .SentOnBehalfOfName =…
urdearboy
  • 14,439
  • 5
  • 28
  • 58
0
votes
1 answer

applescript for Mail.app to duplicate outgoing message and send as a newly formatted message

So i've been searching around for a way to do the following, sequentially in Mail.app, using AppleScript: intercept an outgoing message (let's call this "A") make and exact duplicate message (let's call this "B") of the outgoing message "A" format…
KG -
  • 7,130
  • 12
  • 56
  • 72
0
votes
1 answer

How to use applescript to save an email as a txt file

I am completely newbie in Applescript... In Apple Mail, you can save an email as a text file : File > Save As... > Format "Plain Text" Is it possible to automate that using an applescript ? Would it be possible to use applescript to save the mail…
Sal
  • 117
  • 12
0
votes
1 answer

Django send_mail() is not grouping emails together based on subject in outlook and apple mail

I am using Django's send_mail() for my email notifications, and I need to send multiple follow up mails which needs to be grouped together based on the same subject. Gmail groups the emails automatically based on the same subject line, but for some…
0
votes
2 answers

Simple AppleScript to export Apple Mail messages to FileMaker DB?

I'm using a product called "Mail Archiver X" to archive messages from Apple Mail into a custom FileMaker database ("eMailViewerX" - this is the target database that comes with Mail Archiver and is required for the process), from where I copy these…
0
votes
0 answers

How to manipulate an e-mail with apple MailKit on macOS Monterey

Together with macOs Monterey apple published MailKit for apple Mail. (https://developer.apple.com/documentation/mailkit) I would like to create an apple Mail extension that can manipulate the from address depending on the to address of a new…
Julian
  • 1
  • 1
0
votes
1 answer

How can an IoS APP send email using Outlook

We have an IoS APP that can send and email and attach a file that was created by the app. It has worked fine for long but now a user says it is not possible. It seems like the users at this company are not allowed to use Apple Email so they are…
Green1234
  • 33
  • 3
0
votes
1 answer

Login with an existing google account in Apple Mail using AppleScript

Purpose: Automation Tool: AppleScript Email Client: Apple Mail OS: macOS Big Sur Version 11.4 I have an existing google account. I need to login to the Apple Mail app using this google account using AppleScript. Is there any way I can achieve…
0
votes
0 answers

Email template issue in Apple MAC Mail client

I have developed one email template for one of my client that is working good in outlook and gmail but I have facing image display issue in Apple mac mail client Email template code:
user3374268
  • 63
  • 1
  • 7
0
votes
1 answer

Apple Mail attachments to Apple Notes via Applescript

I'm working on a script that copies Apple Mail mails into Apple Notes. So far so good, but I am having troubles getting the attachments into the newly created note. This is on macOS Catalina 10.15.7. I spent half a day yesterday looking for…
MrMacvos
  • 103
  • 2
  • 8
0
votes
0 answers

Apple Mail Plugin Message Content Body

I am in the process of developing a Plugin for Apple Mail. I spend lots of time figuring out how to hook into the undocumented API. But I can't figure out how to access the content of a message. I can access and manipulate the header alright (from,…
Tommy
  • 11
  • 2
0
votes
0 answers

Swift: Calling AppleScript is slow to get Mail Selection

I'm using the following Swift to execute an AppleScript to capture the currently selected message in Apple Mail. func getMessage(messageID: String) -> String? { if let url = Bundle.main.url(forResource: "getMessages", withExtension: "scpt")…
iphaaw
  • 6,764
  • 11
  • 58
  • 83