An open attachment in mail??

How do I create a message in Mail where the attachment is already open with the message is opened. I don't want the person receiving to have to open the attachment.

Jaysun:
What you are asking is not able to be done reliably and for a good reason: it would be an easy avenue for an attacker who wanted to send executable programs, which travel in attachments, to would-be targets.
But, I wonder if there is something else. What do you want to send and what do you want the result to be? I am wondering if you asked about what you thought might be a solution to something you want to do, but did not ask about the thing you wanted to do.
Put another way: What kind of attachment? What are you looking to be the result of opening the email?
Fred

Similar Messages

  • Cannot open attachment in mail

    Once I've replied to an email with an attachment in it I can no longer return and open the attachment.  I'm given the opportunity for a "quick look" when the mail first comes in but that's it.  And once I reply i cannot return to the original message alone, its part of a thread. 
    So frustrating and confusing, hope this makes sense.  Thanks in advance. 

    Mail/Preferences/Viewing - try turning off the messages View as conversations by un-checking the boxes.

  • How to open attachment in mail

    I am new to Mac. I have been receiving .wmv attachments with some e-mails and do not know how to open them. I double click the icon and just get a bunch of "code" or whatever it is. Is there a way to open these attachments?

    Hello froesgirl:
    Welcome to Apple discussions.
    The other posters are correct. As a bit of background, Microsoft stopped supporting WMV for Macs sometime ago (apparently they have started again, as I just learned). However, they did provide a free link to Flip4Mac that allows WMV files to play in Quicktime.
    This link will give you two options:
    http://www.microsoft.com/mac/products/flip4mac.mspx
    I use Flip4Mac myself and it works very well.
    Barry

  • Open Attachment option in Mail opens incorrect invite in Calendar

    My issue: if I double click or use the Open Attachment option in Mail for calendar invites, an invite from 2 years ago opens in Calendar for me to accept. If I use the Add to Calendar function, no problem & reads like it should do.
    I upgraded to ML about 2-3 weeks ago and Mail was spectacularly painful with the merge from SL not working at all. Calendar seemed to be ok, however this usse has started to appear in the last 24 hours.
    Ivites can be accepted no dram using the iPad or my wifes iPhone just seesm to beon the Mac that its a problem.
    Any thoughts/ideas/fixes would be great.
    Cheers.

    This link solved the problem
    https://discussions.apple.com/thread/4165985?start=15&tstart=0

  • Error while Opening PDF attachment from Mail

    Hi,
    We two Output Types created ZNEU and ZAUF. Two Smartforms are created for the same Output Types. The Issue now is, When ZNEU triggers and send a mail the document is properly decoded and gets opened but for ZAUF it doesn't. It says File damaged.
    This is the code we have used for sending mail.
    CONSTANTS:
              co_pdf(3) TYPE c VALUE 'PDF',
              co_raw(3) TYPE c VALUE 'RAW'.
      DATA:
            it_objbin TYPE STANDARD TABLE OF solisti1,
            wa_objbin TYPE solisti1.
      DATA:
             lv_filesize TYPE i.
      DATA:
            it_lines TYPE STANDARD TABLE OF tline.
      DATA:
            wa_mail_body TYPE solisti1,
            wa_receipients TYPE somlreci1.
      DATA:
           document           TYPE REF TO cl_document_bcs,
           content            TYPE solix_tab,
           wa_content         TYPE solix,
           send_request       TYPE REF TO cl_bcs,
           sender             TYPE REF TO if_sender_bcs,
           recipient          TYPE REF TO if_recipient_bcs,
           requested_status   TYPE REF TO bcs_rqst,
           status_mail        TYPE bcs_stml,
           bcs_exception      TYPE REF TO cx_bcs,
           lv_rec             TYPE adr6-smtp_addr.
      DATA:
             wa_attachx TYPE solix,
             l_pdf_len TYPE i,
             l_con_len TYPE i,
             l_pdf_pos TYPE i,
             l_con_pos TYPE i.
      FIELD-SYMBOLS: <fs_con> TYPE x.
      CLASS cl_cam_address_bcs     DEFINITION LOAD.
      CLASS cl_abap_char_utilities DEFINITION LOAD.
    * Get the PDF version of the OTF
      CALL FUNCTION 'CONVERT_OTF'
       EXPORTING
         format                      = 'PDF'
       IMPORTING
         bin_filesize                = lv_filesize
        TABLES
          otf                         = job_output_info-otfdata
          lines                       = it_lines
       EXCEPTIONS
         err_max_linewidth           = 1
         err_format                  = 2
         err_conv_not_possible       = 3
         err_bad_otf                 = 4
         OTHERS                      = 5.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Convert the PDF format to the table type required for the attachment.
      CALL FUNCTION 'QCE1_CONVERT'
        TABLES
          t_source_tab         = it_lines
          t_target_tab         = it_objbin
        EXCEPTIONS
          convert_not_possible = 1
          OTHERS               = 2.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Convert the data which is in text to binary
      l_con_pos = 0.
      DESCRIBE FIELD wa_objbin LENGTH l_pdf_len IN BYTE MODE.
      DESCRIBE FIELD wa_attachx LENGTH l_con_len IN BYTE MODE.
      LOOP AT it_objbin INTO wa_objbin.
        ASSIGN wa_objbin TO <fs_con> CASTING.
        CHECK sy-subrc EQ 0.
        DO l_pdf_len TIMES.
          l_pdf_pos = sy-index - 1.
          IF l_con_pos = l_con_len.
            APPEND wa_attachx TO content.
            FREE wa_attachx.
            l_con_pos = 0.
          ENDIF.
          MOVE <fs_con>+l_pdf_pos(1) TO wa_attachx-line+l_con_pos(1).
          ADD 1 TO l_con_pos.
        ENDDO.
      ENDLOOP.
      IF l_con_pos > 0.
        APPEND wa_attachx TO content.
      ENDIF.
      TRY .
    *     -------- create persistent send request ------------------------
          send_request = cl_bcs=>create_persistent( ).
    *     -------- create and set document with attachment ---------------
    *     create document from internal table with text
          document = cl_document_bcs=>create_document(
                        i_type    = 'RAW'
                        i_text    = mail_body_tab
                        i_subject = email_subject ).
    *     add attachment to document
          CALL METHOD document->add_attachment
            EXPORTING
              i_attachment_type    = 'PDF'
              i_attachment_subject = attachment_name
              i_att_content_hex    = content.
    *     add document to send request
          CALL METHOD send_request->set_document( document ).
    *    Set sender
          sender = cl_cam_address_bcs=>create_internet_address( sender_id ).
          CALL METHOD send_request->set_sender
            EXPORTING
              i_sender = sender.
    *     Receipients
          LOOP AT receipients_tab INTO wa_receipients .
            lv_rec = wa_receipients-receiver.
            recipient = cl_cam_address_bcs=>create_internet_address( lv_rec ).
    *       Add recipient with its respective attributes to send request
            CALL METHOD send_request->add_recipient
              EXPORTING
                i_recipient = recipient.
          ENDLOOP.
    * Set that you don't need a Return Status E-mail
          status_mail = 'N'.
          CALL METHOD send_request->set_status_attributes
            EXPORTING
              i_requested_status = 'N'
              i_status_mail      = status_mail.
    * set send immediately flag
          send_request->set_send_immediately( 'X' ).
    * Send document
          CALL METHOD send_request->send( ).
    *      COMMIT WORK.
        CATCH cx_bcs INTO bcs_exception.
          RAISE EXCEPTION bcs_exception.
    ENDTRY.
    This is in a Class which is been used in the print program for both the Output Types.
    Can somebody throw light upon this.
    Note: I tried using
    but it is not working properly.
    Thanks,
    Prashanth
    Edited by: Prashanth KR on Jan 5, 2010 6:20 AM

    Hi,
    Please paste the part of code where you are getting error.
    And if you are not clear about where the error is, try searching sdn or google with the error message that you are getting as this issue has been discussed many times earlier.
    Check this link.
    Error while opening PDF in mail attachment
    Hope it helps.
    Regards,
    Raj

  • When I open a word document attachment in mail for IOS 7.1.1 the previous jpeg is showing on the first page. When I open the attachment from mail in mac OS X the jpeg does not appear. Can anyone help?

    When I open a word document attachment in mail for IOS 7.1.1 the previous jpeg is showing on the first page. When I open the attachment from mail in mac OS X the jpeg does not appear. Can anyone help?

    gonsa47 wrote:
    When I open it in pages or word the correct company logo appears.
    Does the mail app display whatever is in the document without the ability to differentiate between hidden or non hidden images?
    The mail app will not display fillable form fields in PDF files that can be seen in real PDF apps. I say real PDF apps because the form fields in PDF apps will not appear in the iBooks app either. IMO, iBooks is not a real PDF app.
    So, I would say that the mail app cannot differentiate between hidden and non hidden items

  • I am unable to open my PDF attachment in mail.

    I cannot open my PDF attachment in mail. I am able to on all of my other apple products but not my air. Is there a setting that i might have wrong?

    If it is your own pdf and you are unsure of your password, you are out of luck. You will need to create a new file from the original documents. I suggest using password managers, if you need to create many different documents with different passwords.

  • Error opening or saving certain attachements in Mail.app

    I have encountered a problem with certain attachments in Mail.app. I couldn't find any solution on the Internets, but I eventually figured it out and thought I should post it here.
    This has been a rare issue (only happened twice so far) and may be related to OmniGraffle files.
    The problem: When clicking to open the attachment or trying to save the attachment, I got the error: Mail was unable to save the attachment “file.name” to disk. Please verify your downloads folder exists and is writable.
    The solution:
    1. I found the message in the mail folder.
    2. I made a copy of it (just to be safe) and opened the copy in TextEdit.
    3. Within that message, I found the following header marking the start of the offending file:
    --Apple-Mail-4-912721465
    Content-Disposition: attachment;
    filename=file.extension.zip
    Content-Type: application/zip;
    x-mac-auto-archive=yes;
    name="file.extension.zip"
    Content-Transfer-Encoding: base64
    4. I changed both references to "file.extension.zip" to just "file.zip"
    5. Save and double-click on the file to open it in Mail.app
    6. Now the offending file should appear as a folder and you can open and save it. The file you really want access to is within this folder.
    Notes: Both times my problem was with an OmniGraffle file. Maybe this is a clue, or maybe not. Also, I believe the problem has something to do with the file being zipped (or the way Mail.app handles .zip files), but have no proof!
    I have no idea why this problem is occurring, but if anyone has anything to add, please do-- I'm posting here mainly to share a strange solution to a strange problem. The more info the better.

    These permissions bugs in Lion are pretty prevalent and I've had to reset a lot of application defaults since migrating between machines. Do the following and let me know if it works:
    Copy your Mail and Mail Downloads folders in ~/Library/ ( where "~" is referring to your User). Paste these folders your copied into something on your desktop as a back up.
    Then navigate to ~/Library/Preferences and find the two .plist files named, "com.apple.mail.plist" and "com.apple.mail.plist.lockedfile" and delete them.
    Relaunch Mail.
    Relaunching should cause a new .plist file to generate that reads as defualt and using the contents of your ~/Library/Mail folder your OS X Mail shoudl look like it did.
    I have issues changing prefs in mail and seem to have a bigger bug at work since I continually have to trash my mail.plist once a week or else I can't connect to my SMTP server. But this always works and I get rid of the, "...writing preferences to your disk has failed..." message.

  • My computer is running slow after Yosemite install -but in the Mail program, when I open an email and then open the attachment -all is good -when I close the attachment the Mail program goes away, and I have to reopen it in my Dock -every time -been

    My computer is running slow after Yosemite install -but in the Mail program, when I open an email and then open the attachment -all is good -when I close the attachment the Mail program goes away, and I have to reopen it in my Dock -every time.

    I tried this, but no luck. I went to Previous System>Users. There is nothing inside the "Users" folder, so I hit a dead end.
    I can find my new e-mails -- those that came in since I re-installed the system -- in my NEW system (which I did to see if I was correctly understanding the advice), by going to Users>Home>Library>Mail>POP account name>Inbox.
    Let me add a new question: I am running PhotoShop C3. It opens OK, and I can use it, but when it opens I get this message: "One or more files for Adobe Application Support folder are missing. Please re-run the PhotoShop installer."
    I don't like re-installing working programs if I can avoid it, because it always seems to lead to other issues. Any idea what files are missing, and where it/they might be in the Previous System folder?
    thanks
    Mike

  • Is there a function to open the outlook mail and to attach certain..

    Hello,
    Is there a function to open the outlook mail and to attach certain selected files?

    here is a code snippet from one of our programs
      data: out type ole2_object,
            outmail type ole2_object,
            att type ole2_object,
            atts type ole2_object.
          create object out 'Outlook.Application'.
          call method of out 'CREATEITEM' = outmail
            exporting
              #1 = 0.
          set property of outmail 'SUBJECT' = 'Smartform Output from SAP'.
          call method of outmail 'ATTACHMENTS' = atts.
          call method of atts 'ADD'
            exporting
              #1 = p_file.
          call method of outmail 'DISPLAY'.
    in our case, we save the data to a local file with the path p_file.
    so, we create the attachment on a local drive, at path p_file
    we open outlook
    we create a mail item
    we set the subject
    we add the attachment
    and we call disply, to pop the email up for any changes the user wants to make.
    in other programs we also use
      set property of outmail 'TO' = alvline-prc_email.
    to set the TO address of the email
    hope this helps

  • HT2128 Does any one know how to attach a document from your mail, while you are already in your e-mail, meaning not having to look for your file first and then open the e-mail.

    Does any one know how to attach a document from your mail, while you are already in your e-mail, meaning not having to look for your file first and then open the e-mail.

    Luis
    Good question - and one that a lot of (business) people would like solved!
    Your question prompted me to do some research, and I found this workaround posted by Scott Grossberg:
    His solution actually addresses a second problem too - how to attach a document when replying to an email message. In your case you may not need to consider the "reply" aspect - but if not right now, it'll come in useful someday!
    I've pasted it verbatim - if it works for you (it does for me) then all credit goes to Scott for solving the problem. There's just one thing I'd add to his solution: you will probably want to rename the message, as by default Goodreader gives it the Subject line: Mail with GoodReader attachments.
    THE GOODREADER OPTION
    1.  CREATE the document you want to send.
    2.  SAVE it to GoodReader (this will require you to buy and install the app).
    3.  Go to your email and OPEN the email thread to which you want to Reply and attach your file.
    4.  COMPOSE your Reply.
    5.  DOUBLE TAP the message.
    6.  TAP SELECT ALL. This will copy the entire email thread.
    7.  OPEN GOODREADER on the iPad and go to the file you want to send as part of your Reply.
    8.  At the bottom of the GoodReader screen you will see an EXPORT icon (it looks like a rectangle with an arrow pointing to the right).
    9.  TAP the Export button.
    10.  TAP EMAIL FILE. Depending on your needs, tap either SEND FILE “AS IS” or “FLATTEN ANNOTATIONS.” This will open a compose message screen with the chosen document already attached.
    11.  TAP in the body of the email screen. TAP PASTE. This will place your composed Reply and the prior email thread into the message.
    12.  ENTER the Recipients’ names in the TO: field of your message.
    13.  SEND your email Reply.
    The modified version (= when composing a new message rather than a reply):
    1 Make sure that the doc you want to attach is saved in GoodReader
    2 In the message you are composing, double tap, select all, and then copy.
    3 Open GoodReader and select the file you want to attach
    4 Select the export button at the bottom of screen
    5 Select e-mail file
    6 Position cursor in body of the email message, tap and paste. You may want to delete the "sent from GoodReader" text that precedes the attachment.
    7 Rename your message (as by default it will be Mail with GoodReader attachments)
    8 Add the recipient's address in the To field.
    Hope this helps! All thanks to Scott for this workaround.

  • How do i include an attachment in Mail w/o it being open in the sent mail

    how do i include an attachment in Mail w/o it being open in the sent mail

    Hi there.  I used to wonder about this as well.  Then I realized it was much ado about nothing.  I even used to send it to another email account to see how it would appear and it's just fine.  Sometimes it gets delivered in the body of the email, and other times as a "regular" attachment.  Either way, the recipient is able to click or double click and download just fine.  Hope that helps :-)

  • How do I attach a file to a Mail doc without the file being opened in the Mail document?

    How do I attach a file to a Mail doc without the file being opened in the Mail document?

    You will (often) see a preview of the attachment, depending upon the file type.  To get rid of the preview: control click on the attachment select "View as icon".
    (What the recipient of your message sees is dictated by that person's email application.  If you want to make sure the person gets an attachement which is not previewed, you can zip it (control-click, "Compress...") and then attach the zipped file(s).  Or you can try something like Attachment Tamer.)

  • E-mail Attachments are only allowing me to open in e-mail as opposed to PDF, PPT, GIF or any app that is relevant to the attachment.

    E-mail Attachments are only allowing me to open in e-mail as opposed to PDF, PPT, GIF or any app that is relevant to the attachment.

    Meaning if you use the "tap and hold down on the attachment" you are not getting the "Open In" option? Or should we just keep guessing about what might be happening?
    If that is what is happening, deom the home screen .... quit the mail app completely in the recent tray by double tapping the home button to bring up the recents tray - and then tap and hold down on the mail app icon in the recent tray until it wiggles, then tap the red minus sign to quit the app. Restart the iPad and then try the "tap and hold down" on an attachment again.
    If you mean that something else is wrong or happening - share the information.

  • Cannot open Word document attachment in mail before sending.

    Cannot open Word document attachment in mail before sending.
    In Snow Leopard Mail 4, (Version 4.0 (1075/1075.2)) if I attach a word document to a message and, BEFORE sending the message, I double click the attached document to open it, to make sure it is the right one, I get the error "Mail was unable to save the attachment “Test.doc” to disk. Verify that your downloads folder exists and is writable."
    The attachment is mailed correctly and arrives at the destination, but the ability to verify an attached document before sending it is essential. This has worked fine in all previous editions of OS X.
    Any ideas?
    Thanks - Lawrence

    I have same problem. I've done the following testing to pinpoint where the problem lies and there are clues (see below):
    1. My machine had SnowLeopard installed "fresh" (i.e. disk reformat and installed cleanly)
    2. I have a comparison machine running Leopard (10.5.6) - essentially a mirror but with different OS
    3. Problem is triggered when creating new email, with a MS Word .doc attachment added. If you attempt to open the attached file in the mail (not yet sent) it produces the error message "unable to save file XXX.doc to disk. Verify that your downloads folder exists and is writeable"
    4.However, once the mail is sent, the recipient can open the attachment without problems.
    5. I have run Disk Utility and all permissions are correct. My downloads folder exists.
    6. The problem is not present in Leopard (mirror machine other than OS)
    7. I have uninstalled and reinstalled MS Office. Problem still present
    8. I have deleted and recreated the preference files for both MS Office and for Mail. Problem still present.
    And finally...
    9.The problem is confined to .doc files.It works fine for .pdf, .ods AND even for Microsoft .xls files.
    So it may be a MS Word problem triggered by Snow Leopard?
    Apple: if you can confirm this is a Microsoft problem it may be able to be reported to them as a compatibility issue?
    Hope this helps.

Maybe you are looking for

  • Can i install windows 8.1 on msi ms 7058 combo 915p?

    hello i have a msi ms 7058 msi 915p combo and my cpu is intel pentium 4  perscot 3ghz 1 mb socket 775  .i have already used this cpu with windows 8.1 whitout any problem with other old mainborad(gigabyte AGP DDR1).but i cant install with this mainbor

  • What happened to home icon and others in safari?

    I liked the home icon and another.  Are they gone from # 6?.

  • How to turn off this horrible hovering cursor?!

    When my cursor hovers over anything for more than a second or two, it selects whatever it is.  How can I get rid of this nightmare of a feature? Thanks, Tom

  • Interconnecting Catalyst 3750 and 2948G-L3

    I am trying to interconnect a Catalyst 3750 and a 2948G-L3 using fiber GBIC. The interfaces where the GBIC and fiber are attached show up as physically down. I have tried different ports and also changed both switches. No Luck. If I connect a 3524 to

  • Exchange 2007 Out of Office Certificate Error

    Hello, I have an Exchange 2007 Server and for some odd reason this week, we have been having issues enabling Out of Office in Outlook. It is some sort of issue with the Autodiscover service, but despite reading forum post after forum post, nothing ha