How can I sent photos as attachment rather than embedded in the email?

For work, I need to send photos to my editor via email. In Mail, the jpgs automatically become embedded in the body of the the email, but my editor would prefer to receive them as attachments. Is there any way to send photos as attachments in Mail, rather than embedded email itself?

LaSylphide, the Mail forum shows up as one of the categories within the "Mac OS and System Software" forum. Click on whichever version of OSX you're using, and you'll see the list of categories.
There are several threads on this topic, and I've seen three solutions:
1. Check the "Send Windows-Friendly Attachments" box. Some people say it works, some say it doesn't.
2. Open Terminal and type:
defaults write com.apple.mail DisableInlineAttachmentViewing -bool yes
Some people say this works, some say it doesn't.
3. In Mail > Preferences > Composing, make sure "Message Format" is set to "Plain Text." Once again, some say this works, some say it doesn't.
Hopefully, one of those will solve your problem. There may also be a setting in your editor's email program that would solve it, but I'm assuming that's a Windows app and I haven't worked with Windows since 1993, so I'm no help there.

Similar Messages

  • How do I send photos as jpg icons not embedded in the email?

    Hi was wondering how I would send a photo as a jpg icon and have it show up as the same icon, not the actual photo embedded in the email?

    You can Command (right) - click  on the photo in the email and select View as Icon in the contextual menu.
    Set the format as plain text as select Always Send Windows-Friendly Attachments in the Edit ➙ Attachments menu.
    It will display as an icon in the outgoing email.  However, no matter you do it will depend on how the receiving email client is configured as to how the photo will be presented at that end.
    OT

  • TS2451 how to send photo as attachment and not embedded in the email content

    Is there any way that I can send photo as email attachment instead of it appearing in the email content.

    Actually it has to do with the receiver and their email client. Certain email clients will show it as an attachment, some as imbedded.

  • I want to change the sharing and permissions of a large number of photos. How can I do this in bulk rather than one at a time?

    I want to change the sharing and permissions of a large number of photos. How can I do this in bulk rather than one at a time?

    Does this involve iPhoto in some way?

  • How can I transfer photos from my iphone to my computer without emailing each one to myself

    how can I transfer photos from my iphone to my computer without emailing each one to myself, and I thought they would be in icloud but I can't find them

    Pics taken with the iphone are imported to your computer as with any other digital camera ( as explained in the manual).
    Pics synced to your iphone from your computer should still be on the computer.
    iOS: Importing personal photos and videos from iOS devices to your computer

  • How can iTune-synched photos be deleted from iOS devices if the iTunes computer is no longer available?

    How can iTunes-synched photos be deleted from iOS devices if the iTunes computer is no longer available?
    This can happen because the iOS device is on travels distant from the iTunes computer, because the iTunes computer is on travels distant from the iOS device, because the iTunes computer has failed permanently, because the iTunes computer has been stolen, etc.

    KRDHarris-
    The only possibility I can think of, is to consult with an Apple Store Genius.  See if there is some kind of Apple proprietary software or diagnostic tool that can do it.
    I do not think you want to, but you could go to Settings-General-Reset-Erase All Content and Settings.  If you decided to do that, you might be able to restore from a previous backup when you get home.
    Fred

  • How can I use "t3://becluster:6001" rather than "t3://dcsv02,dcsv01:6001"

              I have 2 machines in a cluster (dcsv01 and dcsv02) (HP UNIX with weblogic server
              5.1 sp8) and 1 Windows PC with weblogic 5.1 sp10.
              I try to make a t3 connection between the PC and the cluster of machines.
              On the Windows PC I have the following configuration for the
              "c:\windows\system32\drivers\etc\Hosts" :
              171.1.70.61     becluster
              171.1.70.62     becluster
              where
              "171.1.70.61 is dcsv01 and
              171.1.70.62 is dcsv02 "
              If I connect my PC to the cluster with :
              hp.put(Context.PROVIDER_URL, "t3://dcsv01, dcsv02:6001"); :
              I have a great failover mechanism : if any of the machine (dcsv01 or dcsv02) are
              down the requests are routed to the other one.
              BUT!! If I connect my PC to the cluster with :
              hp.put(Context.PROVIDER_URL, "t3://becluster:6001"); :
              I have a not great failover mechanism :
              say that my windows hosts file looks like :
              171.1.70.61(dcsv01)     becluster
              171.1.70.62(dcsv02)     becluster
              then if dcsv02 is down then all requests are routed to dcsv01 and that is fine.
              BUT!! if dcsv01 is down then I got on my PC the
              "Bootstrap unable to get a t3 connection to dcsv01" exception and failover does
              not work. (not the way that it does with t3://dcsv01, dcsv02:6001 )
              So how can I use
              "t3://beclsuter:6001" rather than
              "t3://dcsv01, dcsv02:6001" with the same failover service????
              Thanks
              

              Thanks mike,
              In a UNIX or windows environment how can I get a DNS server that round robin?
              "Michael Reiche" <[email protected]> wrote:
              >You need to have becluster defined in a DNS that round-robins.
              >
              >Mike
              >
              >"Martial" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >> I have 2 machines in a cluster (dcsv01 and dcsv02) (HP UNIX with weblogic
              >server
              >> 5.1 sp8) and 1 Windows PC with weblogic 5.1 sp10.
              >>
              >> I try to make a t3 connection between the PC and the cluster of machines.
              >>
              >> On the Windows PC I have the following configuration for the
              >> "c:\windows\system32\drivers\etc\Hosts" :
              >> 171.1.70.61 becluster
              >> 171.1.70.62 becluster
              >> where
              >> "171.1.70.61 is dcsv01 and
              >> 171.1.70.62 is dcsv02 "
              >>
              >> If I connect my PC to the cluster with :
              >> hp.put(Context.PROVIDER_URL, "t3://dcsv01, dcsv02:6001"); :
              >> I have a great failover mechanism : if any of the machine (dcsv01 or
              >dcsv02) are
              >> down the requests are routed to the other one.
              >>
              >> BUT!! If I connect my PC to the cluster with :
              >> hp.put(Context.PROVIDER_URL, "t3://becluster:6001"); :
              >> I have a not great failover mechanism :
              >> say that my windows hosts file looks like :
              >> ..
              >> 171.1.70.61(dcsv01) becluster
              >> 171.1.70.62(dcsv02) becluster
              >> ..
              >> then if dcsv02 is down then all requests are routed to dcsv01 and that
              >is
              >fine.
              >> BUT!! if dcsv01 is down then I got on my PC the
              >> "Bootstrap unable to get a t3 connection to dcsv01" exception and failover
              >does
              >> not work. (not the way that it does with t3://dcsv01, dcsv02:6001 )
              >> So how can I use
              >> "t3://beclsuter:6001" rather than
              >> "t3://dcsv01, dcsv02:6001" with the same failover service????
              >>
              >> Thanks
              >>
              >>
              >>
              >
              >
              

  • How can you upload photos to FaceBook from iPhoto without using the sync where is deleted in iPhoto it will be deleted in FaceBook

    How can you upload photos from iPhoto to FaceBook without having the sync where if you delete from iPhoto you delete

    I think you have to have the files on your HD. So either put them in iPhoto or copy them to a folder in Finder, and from there you can upload to Facebook.

  • HeNew Ipone, my icloud id doesn´t work. How can I delete it and make a new one? The email address wrong so I can´t varifie it.

    Hey,
    Got a new Iphone, my icloud doesn´t work. How can I delete it and make a new one? The email address is wrong so I can´t varify it.
    Can´t download apps, because it´s wrong. What can I do? Please help!

    Welcome to the Apple Community.
    You can delete your account at settings > iCloud, scroll down and tap delete account. You can then enter details of any new account you create.
    Note. The purchase of apps are done through an iTunes store account not your iCloud account. If you are having issues downloading apps, it isn't related to your iCloud account.

  • Emailing photos as attachments rather than embedded in email text

    Hi
    I have set my mail preferences to send emails as plain text rather than RTF.
    Here is what happens
    Route 1) I export a photo from iphoto to my desktop, then open the Mail program, create a new email to my friend who uses Outlook on WIndows, and ATTACH the photo from my desktop. Whilst from my mac end, it looks as though the photo is embedded in the text of the email, when my friend receives it in Outlook, the photo is "attached" just as I wanted it to be, and is not embedded in the text. So route 1 works
    Route 2) I select the photo in iphoto and click the Email icon within iphoto at the bottom right of the screen. The email program opens and the photo appears (as before) to be embedded in the email text rather than attached. This time when I send this to a friend using outlook on Windows, the email arrives with the photo still embedded in the body of the email, and not as an attachment. So this route does not work
    Any ideas why route 2 is overriding the preference settings an sending in RFT (assuming that is what it is doing)? Can I change this?
    Is there a way to make the "Email" icon in Mail work the same way - i.e. to attach the photo as an attached file rather than embed in the text of the email?
    I ask because I send photos for people to save in original size and format so they can print - embedded photos in the text are no good for this
    Thanks

    You should deselect having iPhoto include any caption or file names. Having those following each photo is likely the source of this behavior. When sending to such recipients, you should have all attachments last in the message, and with no text following or between them.
    Also, when the message appears in the Compose window, an extra safeguard is to then click on Format in the menubar, and choose Make Plain Text. I use Aperture, rather than iPhoto, and always do this step, and would also do with iPhoto.
    Ernie

  • Ow can i prevent photos as attachment from appearing in body of emails sent

    How can I prevent the photo(as an attachemt) from appearing in the body of the email.....it makes it hard to type the words.

    Hi unitism and welcome to the BlackBerry Support Community Forums!
    I'm sorry, this feature is not available on the BlackBerry 10 devices. We appreciate the feedback and I will pass this on to our development teams.
    Thanks.
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • How can I file at last location rather than location of current file?

    I have Abobe Reader X.  In the old Adobe, when I saved a file, it took me to the last folder I was in, not the location of the current file.  Thus far, I have not been able to find out how to get Adobe Reader X to do this.  I even asked work help desk for help and their solution to unclick 'Automatically save document changes to temp file' worked once. 
    Is it possible?  This is what I want.
    Example:
    I open file that is saved at Y:Scanned Files and save it at
    X:Dogs/Breeds/Hounds/Sighthounds/Basenjis.  I open the next file that is at Y:Scanned Files and click on File:Save As/PDF and window opens to save at Y:Scanned Files rather than at X:Dogs/Breeds/Hounds/Sighthounds/Basenjis, where I just was.  I want to save file at X:Dogs/Breeds/Hounds/Sighthounds/Afghans so instead of just one click, I now have to go through six.  Now imagine you have 30 or 40 documents you have to save.  That's minimum 180 clicks versus 30.  A big difference.  And if you multiply it further by daily and weekly, it's a lot.
    How can I get Adobe Reader X to open the 'save as' window at the last location rather than the current file's address?  I also have Adobe Acrobat, but can't figure out how to get it work in that either.
    I do not like Adobe Reader X.   Unfortunately, it got downloaded automatically at work. 
    Another complaint I have is when I have Adobe Acrobat open and I click on a pdf to open, rather than open in Adobe Acrobat, it opens in Adobe Reader X (which was not the case with the previous Reader).  If I want to open a doc in Acrobat, I have to go to Acrobat and File/Open, which is a pain.
    Another complaint is, why do you have 'save as' and then 'pdf' or 'text'?  This is another time consuming click I have to make.  Add it to the 180 I'm already making above and you can see why I'm extremely unhappy and frustated with this version of Adobe. 
    Please let me know if the above is feasible or not and if it is, how to do it.  If it isn't feasible, please make the above adjustments to Reader Y and put it out pronto.  Thank you.

    If you would like to contact one of the UK based BT Care Team who moderate this forum, they may be able to help you.
    They can be contacted using this link BT Care Team
    They normally respond by phone or e-mail, within three working days, however you should get an immediate confirmation, with a tracking number.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • How can i actually REPORT a fault rather than be t...

    Hi Folks,
    Ive got quite a poor line here, with a lot of noise, occassionally I can hear other conversations and its VERY faint most of the time - so much so I sometimes have to use redial with my mobile just to hear the other person.
    (Also to note my SNR on infinity drops to from roughly 6db to <0.5db over about 8 hours..... and then disconnects)
    Ive had the line from master socket to pole replaced in the last few years, but at the time the engineer said "the underground cables round here are shocking - they need replacing".
    I simply want BT to sort my line!!! I dont even mind PAYING for some new cable to the cab - its about 500 meters, ar at least paying towards it.....
    I'd like to know what I can do - who I should contact etc.
    Ive used the online 'fault report' and that just comes back with 'no fault found'.....
    If i'm at fault (which seems unlikely since im running of a BT installed Master socket, on a newish wire, with no extensions....) then I don't even mind paying the call out fee.
    I just want a good quality line and i'm banging my head against a brick wall....
    your advice would so greatfully be accepted!!
    Best Wishes
    ANdy Warner

    If you would like to contact one of the UK based BT Care Team who moderate this forum, they may be able to help you.
    They can be contacted using this link BT Care Team
    They normally respond by phone or e-mail, within three working days, however you should get an immediate confirmation, with a tracking number.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • How can copied calculations be made relative rather than absolute?

    Frequently I like to copy a recurring item from a previous entry, change the date and assume all will be well. But Numbers 3.2.2 also copies the calculations as absolute rather than relative. That is a calculation of previous balance plus a credit minus a debit is referencing the copied balance, credit and debits rather the balance, credit and debits in the new location, thus throwing the calculations off.
    Supplementary question:
    Is there a fast way to correct the wrong calculations once made? A fast way to restore an orderly sequence one row referencing the previous row's balance and the current row's credits and debits?

    Hi Wanapitei
    Have you tried this?
    Click on a "lozenge" (A2 in this example) to see the contextual menu.
    Clicking on Preserve Row or Preserve Column will turn on (or turn off) the $ sign in the formula. That toggles between Absolute and Relative references.
    Regards,
    Ian.

  • Attached rather than embedded?

    In Mail (and Tiger), how can I receive messages with attachments, such as photos, not embedded in the text? Can attachments -- to be clicked on -- be indicated at the top or bottom of the message?
    Thanks!

    The Mail.app displays all photo/image type attachments with received messages inline or viewed in place within the body of the message by default which cannot be turned off. Inline or viewed in place attachments are not embedded.
    The same when attaching such files to a Mail.app message. Although image/photo and smaller PDF attachments (1-2 pages) appear inline or viewed in place within the body of the message by default before being sent, depending on the recipient' s email client and available preference settings such attachments may appear inline or viewed in place within the body of the message when the message is opened by the recipient or as attached files only which must be opened separately for which the sender has no control over.
    You can try a plugin for the Mail.app called Mail Attachments Iconizer which is Shareware ($6.00).

Maybe you are looking for

  • Need help with drawImage

    1. Is it possible to use drawImage(MyTIFFimage,0,0,null) ; 2. I don't how to paint on a BufferedImage at place (0,0)) a TIFF image. note: i want a BufferedImage with a *2 size compare to myTIFFimage to draw on it a other thing in the free place... I

  • Can we link two business objects  in workflow?

    Dear All, Can we link two business objects  in workflow?My problem is that I have to take a standard BO for triggering my z workflow .But later  in one step  I am using BO which is Z as I am calling a standard Sap transaction in one of the method ins

  • How to get back deleted data logically

    Hi Friends Once again need your guidance to solve my this problem. If I have deleted data and commited.Now I want to bring that data back. How m I to do this.I want to do it logically. Pls help me.Is there any thirdparty software to do it logically i

  • Userexit in delivery

    hello, friends. the requirement is that the delivery document should be output into a text file upon posting of goods issue.  my question, is their a userexit i can use for this purpose?  and also, should it be a userexit in the delivery or should it

  • XML Manipulation

    We plan on supporting multiple versions of our xml gateway. This will require some XML manipulation dependingly on the version number. By manipulating I simply mean adding and removing nodes. What we want to do is have one method to add a node and on