Sending jpg's to PC's.

Can someone explain to me why when I e-mail a jpg photo to a PC from Mail, they need a utility such as Winzip to view the image.
Yet when I e-mail the same file using Webmail the recepient can see the image without any utility.
Thanks, Peter

Make sure "Always Send Windows-friendly Attachments" is enabled when sending to PC users (to strip the Mac resource fork). Check out the Edit menu > Attachments. If that option lacks a check next to it, click it to activate.

Similar Messages

  • How to send JPG images in MAIL?

    I'm having a problem in sending JPG files in MAIL. Nobody can open de files i send. Need Help.
    Tanks.

    Makes sure extensions are fully apparent, checks the form of preview that may have been created on the Mac for its use. Two support documents are linked below, and the one for earlier version of Mail is still useful:
    http://docs.info.apple.com/article.html?path=Mail/4.0/en/9965.html
    and
    http://docs.info.apple.com/article.html?path=Mail/3.0/en/9965.html
    If you were sending to someone using a really old version Mac OS, it might be a hinderance, btw.
    The issues that can arise from use of Rich Text Format are separate issues, and relate to MS and AOL not processing RTF from other systems.
    Ernie
    Message was edited by: Ernie Stamper

  • Mail not sending jpg/pdf files

    You've probably all heard about this problem but does anyone have a fix?
    When i send jpg or pdf files to windows computers they don't show up at the other end.
    This problem is intermittent. If i'm sending mutliple files it sometimes send one but not others.
    Clicking 'windows friendly attachments' does not work. It's already ticked.
    I'm using a Macbook pro 10.5.4 with Mail Version 3.3 (926.1/926)
    Can anyone give me a definative anwser? Searching the wbe and these forums just throws up more unknowns!

    Zipping files takes very little time, since it's built-in to OS X and available as a Contextual Menu item. Aside from that, your files are being received, even if your recipients don't know it. There is something about their mail client that blocks them from seeing them, but if they were to display the full headers of your email, all the images should indeed be there.
    Entourage is no panacea, either; the same thing could happen with that program and your recipients. The only way to ensure that files are received as visible attachments is to archive them all and send that archive file.
    Mulder

  • Sending jpg attachments to AOL subscribers

    HI all!
    I'm consistently unable to send jpg pictures as attachments to friends with @aol.com email addresses. They tell me that the picture numbers come through but no picture. When I send the attachments (and verify in the "sent" box), the picture are definitely attached to the email. Friends not with AOL get things no problem.
    Does anyone know what I'm doing wrong?
    Thanks
    Stephen Lewis3

    Hi Allan, I hope toy don't mind me cc'ing a post I put up earliet - but saw this and could see that the problem is related: "This problem is going to really mess up my recent migration to Macintosh. I prepare a lot of documents in Word and Excel and am careful to append them with .doc and .xls before emailing them to clients and colleagues - all of who are Windows users. One colleague - a senior who calls the shots uses an AOL account and email. I have never had a problem sending .doc and .xls attachments to him but he is now saying that the .doc's and some of the .xls's are arriving as un-open-able .bin files. This is a real bugger. I have tried the 'send Windows friendly attachment' button in iMail but it makes no difference. I have looked at other posts which point the problem back to AOL - but Windows users do not have the problem. Is there a viable solution to this problem because my colleague absolutely will not ditch AOL".
    I send email from iMail using plain text. The AOL recipient says he is now able to open .pdf (but the filename gets changed in transit) and .xls (no probs). He can open .doc by using the 'open with' command. The file name is shortened and the suffix is removed. Any suggestions gratefully received.

  • Sending jpgs to AOL customers

    I can't count the number of times I send simple jpg files to AOL customers and they write back saying they can;t open the file because AOL converted the file to a MiMe file and now the receipient needs Winzip decoder to convert the file back to a jpg. Many people don't want to or don't know how to get the decoder or use it.
    Is there something I can do on my end to send jpgs to AOL customers besides tell them AOL *****?
    imac 24" 2.16 Intel2 Duo   Mac OS X (10.4.9)  

    Email at AOL is an odd beast and very archaic. The MIME encoding turns 8 bit files to 7 bit gibberish. Your image is basically turned into text by AOL mail and then "decoded" (expanded) when viewed.
    If using OS X Mail app you can try "Windows friendly attachments" and it may work at AOL.
    I would suggest "Archiving" prior to sending the image:
    From iPhoto "export" to the Desktop
    Highlight the file in Finder and then Archive (File menu)
    This will make your file blah.jpg.zip
    attach that to your email and send to AOL as a test.

  • OSX Mail - Sending JPG Attachments

    I am having issues sending emails with JPGs attached. For some reason, they are being attached in-line and people are unable to download the attachments. Why is this?

    The easiest to send jpg are to drag the image to the destop, then attach the iimage to a PDF, via Adobe, or pages. Select print, then select the image, and choose.
    Most people use Adobe, and check windows friendly attachmennts.

  • Sending jpg to iPhone via mms not working

    I'm trying to send a jpg from my email to an iPhone via mms, i'm using the correct format [email protected] but the iPhone gets an error that reads:
    The part image/jpg: name=name.jpg; x-unit-mode=0644; x-mac-hide-extension=yes was removed form the message as not supported.
    Any ideas?

    Tamara wrote:
    You cannot send an image to an iPhone using @mms.att.net. mms.att.net was a workaround for phones that are not capable of email. If you want to send an image to the phone, just send it to whatever email address you are using on the phone.
    I dont buy that answer, i can send pics to my friend that has a normal flip phone that way. I also send .3gp movie files to my iphone 3G as a work around of not being able to attach/select video file to send via mms. You can however, forward a video clip that was sent to you. Are youy sure its not a formating of the jpg files or something, im fairly certain i have sent my own phone pics from my e-mail.

  • RE: Sending jpg bytes over a server

    I had another topic but it has not been answered for a couple days so I guess I will clarify my problem more.
    I'm sending my image over a server, Client->Server->Client.
    My sending and receiving works but I get the image and it cannot be displayed.
    Sending
    try{
                  FileInputStream fis = new FileInputStream("picture.jpg");
                  byte[] buffer = new byte[fis.available()];
                  fis.read(buffer);
                  return buffer;
             }catch(Exception e){
                  System.out.println("Loading Image error");
             }Receiving
             try{
                  FileOutputStream fos = new FileOutputStream("received.jpg");
                  fos.write(image);
                  ImageIcon display = new ImageIcon("received.jpg");
                  clientDisplayPicture=new JLabel(display);
             }catch(Exception h){
                  System.out.println("Problem receiving");
             }Am I packaging it wrong? The received image is 0bytes. Thanks in advance!

    Here you are ignoring the result of the read() method.Meaning?
    Here you are not telling us how the incoming data got into 'image'.I put the bytes of the image into an object and passed it over the network.
        public void displayPicture(String from, byte[] image, boolean a, boolean b){
             try{
                  FileOutputStream fos = new FileOutputStream("received.jpg");
                  fos.write(image);
                  fos.close();
             }catch(Exception h){
                  System.out.println("Problem receiving");
        public byte[] getImage(){
             try{
                  FileInputStream fis = new FileInputStream("picture.jpg");
                  File f = new File("picture.jpg");
                  int bsize = 1375;
                  byte[] buffer = new byte[bsize];
                  fis.read(buffer);
                  fis.close();
                  return buffer;
             }catch(Exception e){
                  System.out.println("Loading Image error");
             return null;
        }EDIT: Thanks, got it working, the above worked. THANKS!
    Edited by: Krytical on Aug 10, 2008 12:09 AM

  • Sending jpg attachments in Mail to Windows 8

    When I send a jpg attachment from my iMac 10.9.4 to a Windows 8 laptop the recipient sees only a square with an X in it. Is there something I need to do that will make it possible for them to see the jpg?

    Make sure you send Windows-friendly attachments. To do so for all messages, from the main Mail window choose Edit > Attachments, then make sure Always Send Windows-Friendly Attachments is selected. For a specific message, click the Attach button in the toolbar of the message window, then make sure Send Windows-Friendly Attachments is selected.
    Also use filename extensions (such as document.jpg).
    If the recipient sees two attachments (such as “MyFile” and “._MyFile”), the file with the underscore (such as “._MyFile”) can be ignored.

  • Can't send jpgs to PC

    Any jpgs I attach and send from my Mac to my friend's PC end up embedded in the message so are not able to be saved on her end, only copied. My outgoing message shows an attachment with paperclip, but her incoming message only shows the insertion. Is there a setting I need to change on the Mac, or something she needs to do on her PC to make this compatible?
    My system is an iMac, running system OS X (Mavericks), version. The mail program is Apple's Mail, version 7.3.
    The person trying to receive is running a PC with Windows 7 and using Outlook.
    Thank you!

    Hi Rubypoo,
    If the Windows recipients are having issues with your images showing up as embedded instead of as attachments, you may want to try setting them as Window-friendly attachments, as outlined in the following article:
    Follow these tips when you send files to Windows users:
    Make sure Edit > Attachments > Always Send Windows-Friendly Attachments is selected. For a specific message, click the Attach icon in the New Message window, then select Send Windows-Friendly Attachments.
    Mail (Mavericks): Add attachments
    http://support.apple.com/kb/PH14914
    If they are still having issues, you may want to try Compressing ("zipping") the image file before attaching it:
    OS X Mavericks: Compress and uncompress files and folders
    http://support.apple.com/kb/PH13964
    Regards,
    - Brenden

  • Sending .jpg files

    About half the time when I send a .jpg image to someone, they tell me it came across as a MIME file and they can't open it. What can be done in this situation? Is there a preference setting I can adjust to send in another format? This is driving me crazy! Thanks...

    Ahhhhhh! I usually drag and drop my attachements, so I never see that box. Can you tell me what is happening when I check the box? Does it still convert it to a MIME file or the check tell it to convert to a different format? Thanks!

  • How do I send .jpg from Mac Mail (5.2) as an attachment to Outlook?

    I'm trying to send some photos to an Outlook email address.  They're telling me the photos are embedded.  When I send the email with .jpg's "attached" they show on my end as embedded and are received by the Outlook user as such.  How do I go about getting a .jpg to attach like a .pages or .pdf file?  Thank you in advance. 

    Disable Mac Mail.app Inline Image Attachments
    http://micahgilman.com/play/disable-mac-mailapp-inline-image-attachments/
    Force Apple mail.app to display attachments as icon
    http://www.sant-media.co.uk/2010/11/apple-mail-inline-attachments/
    Mail.app attachment as icon
    http://creativebits.org/mac_os_x/mail_app_attachment_as_icon/

  • Mac OS X 10.7.3 mail doesn't send jpg attachments?

    First thing:
    I can't send a jpeg attachment with Mail. It always arrives in th body of the text and the receiver can do nothing with it.
    Another thing:
    Also when I want to forward an email, very often the attachments doesn't follow, or even the text of the email doesn't follow !
    That's not reliable.
    What can I do?

    You need to upgrade to the current version of Adobe Reader 10.1.3. PPC applications are not supported in Lion.
    If you also use Office then see:
    Office 2004 Applications Won't Work in Lion
    You must have Office 2004 which is a PPC-only suite and will not work in Lion. You need to upgrade to Office 2011 - Mactopia - or you can try the freeware suite, Libre Office, that is functionally similar to Office 2007 for Windows except it works on Lion.
    You may want to consider as well:
    These two suites are similar to Libre Office but not as current or as well-supported:
    NeoOffice
    Open Office
    And, then there is Apple's iWork suite:
    Pages - word processing and layout
    Keynote - presentation
    Numbers - spreadsheet
    Each can open and save Office compatible files. They may be purchased separately via the Mac App Store for $19.99 each.
    (Access to the Mac App Store requires Snow Leopard 10.6.6 or higher and an Apple ID.)

  • IPhone sends jpg, Mac demands jpeg

    If I email myself photo from my iPhone, why do I get:
    You cannot save this document with extension “.jpg” at the end of the name. The required extension is “.jpeg”
    [Why oh why did I switch to the Mac?]

    am i correct that this 'my photo stream' process is not removing any image data?
    Yes,  as long as you have iPhoto's iCloud preference pane configures as follows:
    You're be getting the full image file, pixel dimensions, etc. which is essentially a bit by bit copy of the photo on the Phone.
    When you add tags and other metadata and export the file out of iPhoto as a jpeg with the checkboxes selected to include that metadata there will be some image compression.  However, if one chooses High or even Medium JPEG Quality one will be hard pressed to detect any image degradation unless printing very, large prints or otherwise displaying the image at a very, large size.
    I ran a test on a 1.4 MB photo from my iPhone  and compared the original to two exports, one at High and the other at Medium JPEG Quality and got these results:

  • Mail with jpg attachments not sending

    I've tried repeatedly sending jpg photos in Mail, but they are never successfully sent.  The Send icon keeps spinning and spinning and never stops.  I end up having to go into the Outbox and deleting the message, then doing a Force Quit Mail before I can reopen Mail.  This is something new since updating to Lion.

    Hmm  that sounds convenient.
    Maybe try Attachment tamer, a Mail plug-in, and see if you can tweek a work around.  A few bugs in Mail.
    http://lokiware.info/Attachment-Tamer

Maybe you are looking for

  • [solved]gcc broken after pacman update - libcloog-isl.2.so

    Hi, After a pacman update my gcc broke. When compiling it gives this error: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.6.2/cc1: error while loading shared libraries: libcloog-isl.so.2: cannot open shared object file: No such file or directory gcc -v out

  • Third Party with Excise

    Hi all, We have a requirement as follows. 1) On receipt of order from the customer, company will supply the components required to the Vendor through Sales Order and Excise as the Vendor wants to utilize the Excise Benefits. 2) Vendor will procure fe

  • Crashing issues with Premiere pro Cs6

    When I use Premiere Pro CS6 it tends to crash and it also tends tends to make the video pink and green looking, and it also sometimes flips it upside down and turns it black and white. So I was wondering if auto-saving had anything to do with it or i

  • CNAME value too long

    We are trying to Setup Intune Management for mobile devices. Due to the fact that the required cname "enterpriseenrollment.manage.microsoft.com" has 41 characters our Hosting Provider is not accepting it (will only accept CNAME values with up to 36 c

  • [svn:fx-trunk] 10131: Fixes to several effects bugs and one styles-related bug.

    Revision: 10131 Author:   [email protected] Date:     2009-09-10 14:25:42 -0700 (Thu, 10 Sep 2009) Log Message: Fixes to several effects bugs and one styles-related bug. QE notes: Fixes to all filed auto-center feature bugs. Doc notes: None Bugs: sdk