How do i stop mac mail from embedding attachments 2021

A common issue!

To stop Mac Mail from embedding attachments, you can try the following methods:

Method 1: Disable Attachment Embedding in Mail Preferences

  1. Open Mail on your Mac.
  2. Go to Mail > Preferences > Composing.
  3. Uncheck the box next to "Embed attachments in the message body".
  4. Click "OK" to save the changes.

Method 2: Use a Third-Party Plugin

There are several third-party plugins available that can help you disable attachment embedding in Mac Mail. Here are a few options:

  1. Attachment Manager: This plugin allows you to manage attachments and prevent them from being embedded in the message body. You can download it from the Mac App Store.
  2. Mail Attachments: This plugin provides more advanced attachment management features, including the ability to disable attachment embedding. You can download it from the developer's website.

Method 3: Use a Workaround

If you don't want to install a third-party plugin, you can use a workaround to prevent attachment embedding:

  1. When composing a new message, click on the "Attachments" button and select "Add Attachment".
  2. In the "Attachment" window, select the attachment you want to add.
  3. Right-click (or control-click) on the attachment and select "Open in Finder".
  4. Move the attachment to a new location, such as your desktop or documents folder.
  5. Go back to the Mail composition window and click "Send".

By moving the attachment to a new location, you'll prevent it from being embedded in the message body.

Method 4: Use a Script

If you're comfortable with scripting, you can create a script to automate the process of disabling attachment embedding. Here's an example script you can use:

  1. Open the Terminal app on your Mac.
  2. Run the following command to create a new script: nano ~/Library/Mail/Bundles/DisableAttachmentEmbedding.scpt
  3. Paste the following script into the editor:
    tell application "Mail"
     set theMessage to current message
     set theAttachments to theMessage's attachments
     repeat with i from 1 to count of theAttachments
         set theAttachment to item i of theAttachments
         set theAttachment's embedded to false
     end repeat
    end tell
  4. Save the script and restart Mail.

This script will disable attachment embedding for all new messages you compose in Mail.

I hope one of these methods helps you stop Mac Mail from embedding attachments!