Mail Extensions

RSS for tag

Use Mail Extensions for composition, message actions, secure email, and content blocking in the Mail app.

Posts under Mail Extensions tag

41 Posts
Sort by:
Post not yet marked as solved
1 Replies
94 Views
After installing macOS 12.5 Mac mail app begins to open giving the following message but then stalls Pop-message says: "mail is loading the latest versions of your plug-ins" After some attempts, crashes Any fixes? Mac 24" M1 16GB
Posted
by
Post not yet marked as solved
1 Replies
111 Views
Hello, I am trying to find an email that was sent to me but it was privately relayed. I checked every single email account and junk folders and even icloud.com email. It’s nowhere to be found. Please help! I need this email.
Posted
by
Post not yet marked as solved
0 Replies
141 Views
Hello, Anyone can confirm if the new Mail in MacOS Ventura already accepts MFA and works fine with Office365 accounts and shared accounts? I try find it on google, but no success, also read the new features on Ventura about mail in https://www.apple.com/ma/newsroom/2022/06/macos-ventura-brings-powerful-productivity-tools-new-continuity-features-to-mac/ but didn't find anything about security MFA, etc. Basically if the Office365 have the Multi Factor Autentication (MFA) activated, Mail won't work with it. More information on other thread here: https://discussions.apple.com/thread/253584668 so I have been using Outlook but I just hate the way it works. Thanks in advance :)
Posted
by
Post not yet marked as solved
0 Replies
173 Views
I'm confused about this ... the MailKit headers files seem to suggest that MailKit APIs are available for iOS16 now. But I haven't seen any documentation mention it, and you can't create a MailKit extension for iOS (using Xcode 14) like you can with macOS. So is it available to use in iOS or not? If so, how do we create an iOS target for the MailKit extension?
Posted
by
Post not yet marked as solved
1 Replies
201 Views
I'm trying to build a simple Mail Extension using Compose session handler for the Mac Catalyst App. The idea is to open a ComposeViewController on App Icon click from Mail Toolbar ( when the user adds the app extensions for the app from Mail Preference ). I'm using core data in a shared group and I want to show the list of the email address that the user has added from the app to the ComposeViewController. But on the extension window in the Mail, it shows : Permissions for “MyDemoApp”: • Email Contents Can read sensitive information from emails including the message subject and recipients. This applies to all outgoing messages. Since my Compose-Mail-Extension does not read subject/recipients in the Compose window, My app should not ask this permission from users. Is there any way to omit permissions which my app is not using?
Posted
by
Post not yet marked as solved
0 Replies
124 Views
For years, I've been constructing emails for my organization using Dreamweaver and using various email clients which accept raw HTML source to send to my distribution list. This has worked fine until recently. Now, clients running iOS 15 or the latest macOS are unable to display my images regardless of the various privacy settings. Images in emails from other sources display propertly. I link to images using the standard img ... src=http://... method. I tried https, but that had no effect. The images are stored on my organization's website, which happens to be hosted by Bluehost. (Note it is NOT a WordPress site.) Is there something I need to do on my website, etc. (some kind of security certificate?) which will allow iOS to display images?
Posted
by
Post not yet marked as solved
1 Replies
136 Views
Why is Email taking about four minutes to open on some, and not all devices? Many people have posed this question on forums, and I have not seen a response from Apple. It does not occur in on my IPad mini, or my phone; however it happens on my large screen IPad which is the device I prefer to use for reading email and opening all apps, except for Audible which i typically use on my iPad mini, and my Iphone.
Posted
by
Post not yet marked as solved
0 Replies
136 Views
I detected a possible bug during development that the default mail app is not detected by apps when the Apple mail app is deleted. Reproduced on more than 3 iPhones - all with iOS version 14.8 or higher. Setup: I have 3 mail apps on my device: Apple Mail, Outlook, and a third one. I never touched default mail app settings before. Then I deleted Apple Mail and Outlook was automatically set as the new default mail app in the phone settings. Expected: When an app attempts to open the default mail app (mailto link), the Outlook app is opened. Actual: A message pops up saying that Apple Mail app is not installed on the device. Once I go to my phone settings and actively select Outlook or the other mail app as the default mail app, it works. Other apps open the default app and don't show the popup to install Apple Mail. This is an issue since users will not be aware that they need to actively set an email app in their phone settings even if it already appears to be set, and appears to be unwanted behaviour. We would love to leverage the functionality of using the phone's default mail app, but we have reproduced this issue on multiple devices and I couldn't find anything related to this issue online. Is this issue known yet? Where can I place this problem?
Posted
by
Post not yet marked as solved
0 Replies
218 Views
I am trying to receive a email from private relay email but it does not seem to work. I can send email to private relay email but person received this email cannot reply back. I have set up SPF and DKIM for the domain and registered the domain in apple developer account(email communication). Is there anything else I should do to debug this?
Posted
by
Post not yet marked as solved
0 Replies
263 Views
Hello, I recently implemented the Cryptotokenkit for IOS in order to sign mails (via Apple Mail app). This part went relatively smooth. I found in the Mail settings the parameter under S/MIME that enable Signing mails. Now that this step is complete I also wanted to implement mail deciphering. I tried to run some tests but I met the following message when opening encrypted mail: This message is encrypted. Install a profile containing your encryption identity to decrypt this message I'm sure I've encrypted the mail for me. and I'm also sure the identity is saved and usable inside the Cryptotokenkit I implemented. My questions are: is it possible to use the Cryptotokenkit for mail deciphering? (I assume that since I can sign mail via Cryptotokenkit I can also do mail deciphering, right ?). If the first question's answer is yes. then how do you enable the Cryptotokenkit to do mail deciphering? (I thought the option was close to the one for enabling signing mails but I only found mail encryption)
Posted
by
Post not yet marked as solved
2 Replies
345 Views
Hi, I am trying to build a Mail 'action' extension, and want to access the email body and parse it for specific content. Not sure how to go about converting the 'rawData' that comes in the MEMessage into something that I can read. Here's how I access the rawData property: func decideAction(for message: MEMessage, completionHandler: @escaping (MEMessageActionDecision?) -> Void) { var action: MEMessageActionDecision? = nil      if let messageData =  message.rawData {          print("messageData = \(messageData)") // what to do here??      } else {          action = MEMessageActionDecision.invokeAgainWithBody      } return action } The documentation just says this is 'unprocessed data': The content is available after MailKit downloads the message. MailKit provides the content as unprocessed data. For details about the format of the data, see RFC 2822. But I'm not sure what I'm supposed to do to go about converting the unprocessed 'data' into something that is accessible and useful to my app. Let me know if you have any thoughts or recommendations
Posted
by
Post not yet marked as solved
0 Replies
221 Views
With the help of MEComposeIcon I know that we can add a extension icon in the compose window. Just wanted to know how can we add the app extension on the mail main Viewer window like when we open the mail there is top toolbar which contains icon for compose mail delete mail etc. See the attached screen shot.
Posted
by