Attaching images in Mail

Hello!
I've only recently started using Mail.
I work from home, freelance as an illustrator.
As you can imagine I have to send a lot of images, usually as JPGs or PDFs.
I'm having a major problem with this:
Mail converts the PDFs into small thumbnails in the line of the email,
which is fine.
but it's not attaching the file itself.
for example, I need to send a client a 300dpi A3 poster for them to print.
the image they are recieving is the thumbnail alone, 300Kb JPG
the file I need to send them is a 3MB PDF
I've tested it to three different recieving mail clients and it happens with them all. This is going to make Mail impossible for me to use for my work if this cannot be resolved
help!

pez_queen,
When I attach a document/picture an "Image Size" selection choice appears in the bottom right hand corner of the "New Message" window. This selection includes choices for:
Actual Size
Small
Medium
Large
Have you tried choosing another size?
;~)

Similar Messages

  • Cannot attach images in Mail

    Hi,
    I am wondering if this is just me, I tried to attach an image by dragging and dropping the actual image in the body of the email. It shows a Plus sign on the mouse pointer but nothing has been attached. Then I tried using the attach button on the compose window but it still does not work.
    However, if I drag the file onto the dock, Mail will display a new compose message with the attachment.
    So does anyone have the same problem??

    I've been having issues as well. After toggling the "insert attachments at end" and getting varied results, I stumbled upon another potential workaround. In entirely blank messages, attachments cannot be added unless the sender first places the cursor in the message body and hits return once (that is with "insert at end" selected).
    If replying to a message, this isn't any problem. It seems that Mail needs to know where the end of the message is, and can only do so if there is existing text (a reply or newly composed message), or at least a carriage return.
    Message was edited by: SPD

  • How can you add an image in Mail without being an attachment?

    How can you add an image in Mail without being an attachment?
    In otherwords I'd like to put my logo in the email not as an attachment but as an image.
    Is there a simpel solution to this problem?

    PBN1 wrote:
    How can you add an image in Mail without being an attachment?
    You don't.
    It's not possible. The e-mail protocol is designed for text; anything else has to go as an attachment.
    Different mail clients (such as Mail.app, the mail client bundled with Mac OS X) may have different ways of handling such attachments, but they are still attachments. Each mail client has its own rules and methods, so one may display a picture as if it were in the body of the message, but another client may do something completely different.
    A way of faking it is to format your message in HTML (which is a kind of text). The image is hosted on a remote server, not added to the message; instead, you include a link to it in the body of the message, as you would when building a web page. (This is also what the two tips helpfully provided by X423424X do, except that the link to the image is added in the signature, rather than the body of the message.) What exactly happens to it is, again, at the discretion of the mail client. In my case, for instance, displaying images in HTML messages is turned off, and will stay resolutely off.

  • No longer able to attach .jpg images in Mail...

    I'm having problems attaching .jpg images in Mail. This problem started two or three days ago. I can attach .zip files, but I'm unable to attach .pdf or .jpg files. I have not tried other formats, as these are the two most common formats used.
    Has anyone else experienced this issue?
    Cheers. -m

    There was a discussion posted on this a while back:
    http://discussions.apple.com/thread.jspa?threadID=1545970&start=0&tstart=0
    I get this problem on my PPC, but not my Intel machine. Instead of using Server Admin, best to set this value (maxAttachmentSize) in the /etc/wikid/wikid.conf file. The value in Server Admin will still show '0', but I was still able to attach files up to the size I specified in the wikid.conf file.

  • Why are my attachment images being embedded as distorted thumbnails in the body of the text in Mac Mail?

    Why are my attachment images being embedded as distorted thumbnails in the body of the text in Mac Mail? How can I attach image files as normal attachments?

    Attachments – Disable Embedded Attachments

  • Attaching an Image to Mail.app

    I know, it's been a problem since the evolution of Apple Mail, but it's finally about to drive me to another email client. In the past I've been able to use Attachment Tamer to attach images to outgoing emails, but now its developer has all but vanished and most likely abandoned the application, even though it's always been a 5-star app that worked well with Mail.app. It was never fully released for Mavericks and the Mavericks beta won't work at all with Yosemite. Bottom line is why does Apple have this aversion to allowing images to be attached to an email and force users to embed images inline? Does anyone know of any workarounds to attach images to an email?

    You might try this:
    In a normal mail attachment the header info before the MIME encoded image/file info is this:
    --Apple-Mail-B7254802-404D-423E-86F7-1DCE849C83E8
    Content-Type: application/vnd.iwork.pages.archive;
    name="Blank 2.pages.zip"
    Content-Disposition: attachment;
    filename="Blank 2.pages.zip"
    Content-Transfer-Encoding: base64
    In a Mac Mail in-line attachment the header info before the MIME encoded image/file is this:
    --Apple-Mail=_7D45E9DC-5540-4CB6-8490-C71D4016573C
    Content-Disposition: inline;
    filename=pdf.pdf
    Content-Type: application/pdf;
    x-unix-mode=0644;
    name="pdf.pdf"
    Content-Transfer-Encoding: base64
    Try editing the file outside of mail in a Terminal window (like with vi or vim or nano or whatever you favorite text editor is) and change (don't include the double-quotes only used for illustration):
         1. Change the "Content-Disposition" from "inline" to "attachment;"
         2. Under no circumstances change the line starting with "--Apple-Mail" as that contains a long hex string that terminates the MIME data
    I would make a copy of the test mail message rather than edit the original message so that if something goes wrong, you haven't done any permanent change.
    Good luck...

  • Adding Image as attachment to e-mail UTL_SMTP

    Guys ,
    I am trying to add an image as attachment to an e-mail.
    I am reading the image from the table and then passing it as a BLOB in my procedure.
    Following is the part of the code which adds the attachment
    {code}
    PROCEDURE add_mail_attachment
                  in_att_mime_type  in  varchar2 character set any_cs default 'text/plain; charset=us-ascii',
                  in_attachment     IN  BLOB ,
                  in_att_file_name  in  varchar2 character set any_cs default null,
                  in_mail_conn      IN  UTL_SMTP.CONNECTION
    IS
    l_mail_conn       utl_smtp.connection;
    l_step            PLS_INTEGER  :=2147483647;
    BEGIN
        l_mail_conn:=in_mail_conn;
        if in_att_file_name is not null then
          UTL_SMTP.write_data(l_mail_conn, '--' || co_msg_boundary || UTL_TCP.crlf);
          UTL_SMTP.write_data(l_mail_conn, 'Content-Type: ' || in_att_mime_type || '; name="' || in_att_file_name || '"' || UTL_TCP.crlf);
          UTL_SMTP.write_data(l_mail_conn, 'Content-Disposition: attachment; filename="' || in_att_file_name || '"' || UTL_TCP.crlf || UTL_TCP.crlf);
          for i in 0 .. trunc((dbms_lob.getlength(in_attachment) - 1 )/l_step) loop
                 UTL_SMTP.write_data(l_mail_conn, DBMS_LOB.substr(in_attachment, l_step, i * l_step + 1));
          END LOOP;
          utl_smtp.write_data(l_mail_conn, utl_tcp.crlf || utl_tcp.crlf);
        end if;
       EXCEPTION
       WHEN OTHERS THEN
          sbs_error.error_handler(
                 in_error_no   => SQLCODE,
                 in_error_txt  => SQLERRM,
                 in_show_stack => TRUE
    end;
    {code}
    And this is the code which i am running to test the code
    {code}
    declare
      in_sender                                                         varchar2(200);
      in_recipients                                    varchar2(200);
      in_subject                                                         varchar2(200);
      in_message                                                      varchar2(200);
      in_att_mime_type                                        varchar2(200);
      in_attachment                                                blob;
      in_att_file_name                                           varchar2(200);
      in_cc                                                                        varchar2(200);
      in_bcc                                                     varchar2(200);
      out_mail_conn                                               utl_smtp.connection;
      in_mail_conn                                   utl_smtp.connection;
      v_blob                                        blob;
    begin
          in_sender := '[email protected]';
          in_recipients := '[email protected]';
          in_subject := 'Image attachment';
          in_message := 'Test mails ,Please delete';
          in_cc:='[email protected]';
          in_bcc:='[email protected]';
          select image into v_blob
          from table
          where condition
          sbs_util.sbs_p_email_pkg_raunaq1.open_mail
          in_sender     => in_sender,
          in_recipients => in_recipients,
          in_subject    => in_subject,
          in_message    => in_message,
          in_cc         => in_cc,
          in_bcc        => in_bcc,
          out_mail_conn => out_mail_conn
          in_att_mime_type := 'application/x-pdf';
          in_attachment := v_blob;
          in_att_file_name := 'Att1.pdf';
          sbs_util.sbs_p_email_pkg_raunaq1.add_mail_attachment
          in_att_mime_type  => in_att_mime_type,
          in_attachment     => v_blob,
          in_att_file_name  => in_att_file_name,
          in_mail_conn      => out_mail_conn
          sbs_util.sbs_p_email_pkg_raunaq1.close_mail(out_mail_conn);
    END;
    {code}

    And this is the code which i am using :
    There are basically 3 procedures
    1.Open_mail() - Which is used to open a connection and start a mail message, The code is below
    PROCEDURE open_mail (
                        in_sender         IN  VARCHAR2 CHARACTER SET ANY_CS,
                        in_recipients     IN  VARCHAR2 CHARACTER SET ANY_CS,
                        in_subject        IN  VARCHAR2 CHARACTER SET ANY_CS DEFAULT NULL,
                        in_message        IN  VARCHAR2 CHARACTER SET ANY_CS DEFAULT NULL,
                        in_cc             IN  varchar2 character set any_cs default null,
                        in_bcc            IN  varchar2 character set any_cs default null,
                        out_mail_conn     OUT UTL_SMTP.CONNECTION
    AS
      l_mail_conn       UTL_SMTP.CONNECTION;
      l_email_addresses   VARCHAR2(32767);
      l_send_email_add    VARCHAR2(32767);
    BEGIN
      IF in_sender IS NULL OR in_recipients IS NULL THEN
      RAISE e_null_email_add;
      END IF;
      l_email_addresses:=in_sender||','||in_recipients;
      l_send_email_add:=rtrim(in_recipients||','||in_cc||','||in_bcc,',');
      IF (validate_email_address(l_email_addresses) AND validate_email_address(l_send_email_add))   --if none of the email addresses are invalid ,then go for mail
      THEN
      l_mail_conn := UTL_SMTP.open_connection(co_smtp_server, 25);
      --establish the connection
      --The snapon based smtp host is smtp.snapbs.com
    --The default smtp port being 25
      UTL_SMTP.helo(l_mail_conn, co_smtp_server);
      UTL_SMTP.mail(l_mail_conn, in_sender);
      --Incase we have multiple recipients ,we need to loop through the recipient  ,invoking
      --utl_smtp.rcpt once for each recipient ,mutiple recipien
        FOR i IN ( SELECT REGEXP_SUBSTR (l_send_email_add, '[^,]+', 1, LEVEL) AS recipient  -- Replaced in_recipients with l_send_email_add
                    FROM DUAL
                     CONNECT BY REGEXP_SUBSTR (l_send_email_add, '[^,]+', 1, LEVEL) IS NOT NULL )
        LOOP
        UTL_SMTP.rcpt (l_mail_conn, i.recipient );
        --using the same connection established to send mails to multiple recipients
        END LOOP;
      UTL_SMTP.open_data(l_mail_conn);
      UTL_SMTP.WRITE_DATA(l_mail_conn, 'Date: ' || TO_CHAR(SYSDATE, 'DD-MON-YYYY HH24:MI:SS') || UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(l_mail_conn, 'To: ' || IN_RECIPIENTS || UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(l_mail_conn, 'Cc: ' || IN_CC|| UTL_TCP.CRLF); 
      UTL_SMTP.write_data(l_mail_conn, 'Bcc: ' || in_bcc|| UTL_TCP.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'From: ' || in_sender || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'Subject: ' || in_subject || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'Reply-To: ' || in_sender || UTL_TCP.crlf);
      utl_smtp.write_data(l_mail_conn, 'MIME-Version: 1.0' || utl_tcp.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'Content-Type: multipart/mixed; boundary="' || co_msg_boundary || '"' || UTL_TCP.crlf || UTL_TCP.crlf);--Ref#3
      if in_message is not null then
        UTL_SMTP.write_data(l_mail_conn, '--' || co_msg_boundary || UTL_TCP.crlf);
        UTL_SMTP.write_data(l_mail_conn, 'Content-Type: text/plain; charset="iso-8859-1"' || UTL_TCP.crlf || UTL_TCP.crlf);
        UTL_SMTP.write_data(l_mail_conn, in_message);
        UTL_SMTP.write_data(l_mail_conn, UTL_TCP.crlf || UTL_TCP.crlf);
    END IF;
      out_mail_conn:=l_mail_conn;
      ELSE
      RAISE e_invalid_email_add;
      END IF;
    2. Add_mail_attachment-To add the attachment to the e-mail , the code is below
    PROCEDURE add_mail_attachment
                  in_att_mime_type  in  varchar2 character set any_cs default 'text/plain; charset=us-ascii',
                  in_attachment     IN  BLOB ,
                  in_att_file_name  in  varchar2 character set any_cs default null,
                  in_mail_conn      IN  UTL_SMTP.CONNECTION
    IS
    l_mail_conn       utl_smtp.connection;
    l_step            PLS_INTEGER  :=24573;
    BEGIN
        l_mail_conn:=in_mail_conn;
        if in_att_file_name is not null then
          UTL_SMTP.write_data(l_mail_conn, '--' || co_msg_boundary || UTL_TCP.crlf);
          utl_smtp.write_data(l_mail_conn, 'Content-Type: ' || in_att_mime_type || '; name="' || in_att_file_name || '"' || utl_tcp.crlf);
          UTL_SMTP.write_data(l_mail_conn, 'Content-Transfer-Encoding: base64' || UTL_TCP.crlf);
          UTL_SMTP.write_data(l_mail_conn, 'Content-Disposition: attachment; filename="' || in_att_file_name || '"' || UTL_TCP.crlf || UTL_TCP.crlf);
          for i in 0 .. trunc((dbms_lob.getlength(in_attachment) - 1 )/l_step) loop
                 UTL_SMTP.write_data(l_mail_conn, DBMS_LOB.substr(in_attachment, l_step, i * l_step + 1));--UTL_SMTP.write_data(l_mail_conn, UTL_RAW.cast_to_varchar2(UTL_ENCODE.base64_encode(DBMS_LOB.substr(in_attachment, l_step, i * l_step + 1))));
          END LOOP;
          utl_smtp.write_data(l_mail_conn, utl_tcp.crlf || utl_tcp.crlf);
    end if;
    end;
    --I have skipped the exception part
    3.Close_mail () - This procedure closes the connection and sends the e-mail , the code is as follows
    PROCEDURE close_mail(
                        in_mail_con IN  UTL_SMTP.CONNECTION
    is
    l_mail_conn       UTL_SMTP.CONNECTION;
    begin
        l_mail_conn:=in_mail_con;
        UTL_SMTP.write_data(l_mail_conn, '--' || co_msg_boundary || '--' || utl_tcp.crlf);
        --Indicates that the e-mail message is complete
        UTL_SMTP.close_data(l_mail_conn);
        --Quit the connection
        UTL_SMTP.quit(l_mail_conn);
    END;
    --This is the complete code , Can you suggest where i am erring?
    I am not able to send e-mails after attaching images.
    The e-mail is sent but the attachment is empty.
    I have skipped the exception part of the code

  • Mail converts all attached images to bmp

    I need to send all my (attached) images as jpg or gif. but windows recipients complain they are receiving them as bmp files. i do have windows friendly setting activated.
    any ideas?

    Are you using RTF for message composition?
    If so, try using Plain Text instead.

  • Wrong folder and files order when attaching image ...

    Hello everyone!
    Long ago I noticed a bug in PC Suite: when you attach images to MMS message in PC Suite you would get a mixture of files and folder (folder, files, then again folders, again files, and - more surprising - also files from parent directory etc.) and you cannot get them normally sorted. No need to say that it is very inconvenient..
    I am just wondering how much time would it take Nokia to eliminate this bug as it is still present in the latest version of PC Suite 7.1.30.9. (Phone - N82). Or maybe there is some solution?..
    Thanks.

    Are you using the classic or newer version of Yahoo Mail!? I just tried adding an attachment in an email to myself & none of the pictures I used were grayed out. I am using the newer version of Yahoo Mail!
    Have you tried restarting your computer?

  • How can I forward an email and include the attached images?

    I sent a client an email with attahced images (I attached the images, pictures I took).  The client responded with the images attached to the response.  When I try to forward that response to a third party the attached images become place holders only, no image. 
    Shouldn't my forwarded mail include the images?  Short of re-attaching the images how can I get them included in the forwarded email?

    I tested a few I forwarded to myself and I could still forward with attachments. You might try Redirecting it (Message menu).

  • How to open a pdf attachment in imac mail

    I am unable to open a PDF attachment in Mac Mail. There is not a PDF Icon in the email message. Is there a setting that should be checked?
    I have a new iMac (less than a month old) with Mountain Lion.
    Help would be greatly appreciated. Thanks

    It is an actual PDF that is an attachment to an email. There is not a link to click on to open the attachment.
    The attachment is a statement that I normally open, then print..
    What I am seeing on the monitor is the heading portion of the email with the statement image, all on one page..It prints exactly as seen on the screen.
    I have checked my Mail>Preferences>Viewing Tab."Display remote images in HTML" messages is checked..
    Thanks for the help.

  • Missing attachment size in mail 4.3

    Hi, when I attach a jpeg to an email, I can see the size of the attachment at the bottom of the window but when I attach a pdf, the 'message size' and 'image size' are both missing. Please does anybody know if this is standard or do I have a problem?

    Stuart,
    The problem in the earlier version of Mail was that if the Image Size button were used with PDF, to anything other than Actual Size, the PDF was converted to a JPEG and havoc resulted. It was very purposefully removed in later versions of Mail unless true image files that could be downsized as JPEG files were what were attached. I know this because I was one who pointed out the error that could result. The resizing was prevented in the final Version of Mail 2.x, but the Message size Report and Image Size button were not removed when attaching PDF until Mail 3.x and later.
    The current behavior is not a bug, and the Message Size was only meant to appear when Image Size button could be used to reduce the size of the files, and thus the entire message.
    Ernie
    Message was edited by: Ernie Stamper

  • Cannot save attached files in Mail

    My problem has to do with using the Mail program on a MacBook Pro running Mavericks. Lately when I receive an email with a file attachment (image, Word doc, PPT file, whatever) I cannot save the attached file. 
    I point to the attachment "download" dialog box, and choose either the "save all" option or the specific attachment filename shown, then navigate to the desired folder and hit "save".  But no file is created. 
    The attachments are there - if I look at the same email using the gmail web-based mail utility I can easily download it. It's a problem with the Apple Mail client.
    Any suggestions?  Thank you.
    Jerry

    Zips and other archived/compressed files won't work as expected on an iPad since you can't just preview/view the contents directly from the attachment currently like you can with quicktime-compatible or other common media formats. Basically you would need to be able to save the zip file to the finder and extract it, and view the contents from there. But since the iPad doesn't have anything like a user-accessible Finder, it's tricky to implement.
    There may be third-party apps that deal with this eventually (or maybe even something from the upcoming 4.0 software, who knows), but it would probably be easier to just have people send you attachments that aren't zipped up for now.

  • Adding attached images to iPhoto

    The ability to add attached images to iPhoto from Mail by choosing Save and Add to iPhoto doesn't work.

    It seems the link is broken.
    You can just drag the photo to the iPhoto icon in the Dock until it gets fixed.
    You could also Save the attachment to the Auto Import folder inside the iPhoto Library, but that's a bit difficult to get to unless you go in and create an alias somewhere convenient.

  • How can I manually attach images from my photo booth (imported into iPhoto) to emails? Auto function, in photo booth has my photos lying sideways?

    How can I manually attach images from my photo booth to iCloud emails?
    They are imported as 'events' into my iphoto library.
    Auto function, in photo booth has my photos lying sideways when placed in 'mail' emails?

    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

Maybe you are looking for

  • IMessage on a iPad one with iOS 5.1.1

    My iPad iMessage has stopped working. I can't seem to sign in. Everytime I try it bounces me back to the signin window. Other devices seem to work fine. I've tried rebooting, resetting the networks, etc. Any suggestions appreciates. The password and

  • How to make any select one choice attribute read only base on different att

    i have two select one choice attribute .one is create without binding and another one is base on data control .i do not want to write code in backing bean for making attribute read only . Example: <af:form id="f1"> <af:selectOneChoice label="Label 1"

  • Sql advice for updating a table.

    Hello Wonderful guru's, (I am running Oracle 10g 10.1.0.2.0 on Linux AS3) I am stuck trying to delete a user from a user table when the user has not logged into "a software application" for 90 days. The tables are USER: (userid V2(15), name V2(50),pa

  • Trouble searching in Time Machine

    I'm having trouble searching for a file in Time Machine. In Mac Help, it says: In the Finder window that Time Machine opens over the star field, type in the search field in the upper-right corner. There is no  search field in the upper-right corner.

  • Universal Worklist Error

    I am receiving the following error when I try to forward a task through the Universal Worklist: This item is no longer valid. Select another item or refresh the item list view.   Error Detail: Tue Aug 16 15:02:50 EDT 2005 (Item) Item is missing from