In Mail, how do I add an attachment as an icon?

On right-click there used to be an option to display attachment as an icon. It's gone!

You were talking about AOL in your question. My answer, however,
is the same. Look carefully at everything. On my screen, it looks like
a paper clip. Move your mouse over each icon to see what it is.
Most web pages have a drop down menus. Look at them. And check
with the providers help screens.

Similar Messages

  • How can I add an attachment to an email without showing it in the body of the email?

    How can I add an attachment to an email without showing it in the body of the email?

    1. You must open attachment first
    2. Tap the square with arrow on top right and select mail
    3. Compose your email

  • How do I add an attachment to an email and not have it show up in the body of the email?

    How do I add an attachment to an email and not have it show up in the body of the email? 

    You can right click or command-click on the image in the email and select "view as icon".
    You can change the default behavior of Mail.app so that it always shows the attachment as the icon:
    open a Terminal window (Applications > Utilities > Terminal)
    at the prompt, type in this (it must be exact, or copy and paste it in if you have trouble typing things precisely):
    defaults write com.apple.mail DisableInlineAttachmentViewing -bool yes
    Then hit return.
    To revert to the previous default (where the attachment is visible in-line), you just enter the same command with "no" instead of "yes" at the end.
    In either case, however, how the viewer of the email sees the attachment (either as an icon or in-line) depends on how their email client is set up, not on how you send it.
    Message was edited by: arthur

  • How can I add an attachment to an aol email?

    How can I add an attachment to an aol email?  The compose window has no toolbar, thus no paperclip icon to add an attachment.

    1. You must open attachment first
    2. Tap the square with arrow on top right and select mail
    3. Compose your email

  • How can I add a attachment field to my new form list

    I have the setting checked yes for attachments. Then I click on the edit tab above then attach file, once I attach the file, it disappears and I cant see it after the record is saved. So how would I add a attachment to a record?

    Hi Soupi,
    From your description, my understanding is that you want to show attachments in list view.
    By default, the list view only contain the Title column. If you want to show whether there is an attechment in an item, you can modify the view and show the Attachments column as Clicking List->Modify View, check "Attachments" in Columns section.
    After the above, the result is like:
    In the above image, test1 has an attachment, test1 doesn't have attachments.
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How do I add an attachment to an email?

    How do I add an attachment to an email?

    You can attach some items in an email by tapping where you want to insert the item. A choice to attach a photo will come up along with Select, Cut, Paste, etc.
    Other items like PDFs or other documents can be attached by using the app that the document was created or edited with and using the share feature. The Share icon is a square with up pointing arrow.

  • I used to be able to attach a document to an iCal entry.   After the latest update, it appears this option has been removed.  How can I add an attachment now?  Thanks!

    I used to be able to attach a document to an iCal entry.   After the latest update, it appears this option has been removed.  How can I add an attachment now?  Thanks!

    Hi Dan,
    Yes, iCal 4.0.4 (1395.7). In edit mode, the 'attachments' option is between 'Invitees' and 'URL' (see below). As I said this is for calendars under On My Mac, I suspect you are not seeing this as your event is on MobileMe.
    Best wishes
    John M

  • How do I add an Attachment to an E-mail letter ?

    I have to send two images of my art work to a gallery owner using E-mail. I have put each of these images on my desktop because I was told that it would be easier to attach them to the E-mail. But I'm unable to attach them. Please tell me how to do it. I got as far as writing the E-mail letter, clicking on Add Attachment, then having a box pop up for listing attachments. But I don't know what to do next.

    You can attach some items in an email by tapping where you want to insert the item. A choice to attach a photo will come up along with Select, Cut, Paste, etc.
    Other items like PDFs or other documents can be attached by using the app that the document was created or edited with and using the share feature. The Share icon is a square with up pointing arrow.

  • How do you add an attachment to an email (document, photo, contact, etc.) from the mail application?

    I want to reply to an email and add an attachment. How do you do this on email accounts other than iCloud Mail?

    The only things that you are able to email using the software that came with the phone are photos, videos, contact information, notes, and links. Documents are not able to be saved to your iPhone unless you are using a downloaded application or have them in an email. To send an email containing a photo, contact, etc. you must go into the application and click share->email.
    A workaround for saving documents without the need for a downloaded application would be taking a screen shot (pressing the lock button and home button simultaneously.) This is not the best choice for all cases, but may be for some documents such as word documents.

  • How can I add file attachment to my form and get the attachment by email?

    I'm using this code and it works fine, but I don't get the attachment file in the email. How can I add this to my code?
    HTML
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
    <script src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js" type="text/javascript"></script>
    <script type="text/javascript">// <![CDATA[
                  $(document).ready(function() {
                    $("#form1").validate({
                      rules: {
                        first: "required",// simple rule, converted to {required:true}
                        email: {// compound rule
                        required: true,
                        email: true
                      last: {
                        last: true
                      comment: {
                        required: true
                      messages: {
                        comment: "Please enter a comment."
    // ]]></script>
    <script type="text/javascript">// <![CDATA[
    function validate ()
              if (document.form1.first.value == "")
              alert("Please enter your First Name");
              document.form1.first.focus();
              document.form1.first.style.border="1px solid red";
              return false;
              else if (document.form1.last.value == "")
              alert("Please enter your Last Name");
              document.form1.last.focus();
              document.form1.last.style.border="1px solid red";
              return false;
              else if (document.form1.emailaddress.value == "")
              alert("Please enter your Email Address");
              document.form1.emailaddress.focus();
              document.form1.emailaddress.style.border="1px solid red";
              return false;
    function has_focus() {
        if(document.form1.first.value == "")
                                  document.form1.first.focus();
                                  document.form1.style.first.border="1px solid green";
    function set_focus(x)
              document.getElementById(x).style.border="1px solid #80CA75";
    function clear_focus(x)
              document.getElementById(x).style.border="1px solid #DBDFE6";
    // ]]></script>
    </head>
    <body>
    <p><span style="color: #666666; text-align: center; font-size: 13px;">Please complete this form if you have any technical issue.</span></p>
    <form id="form1" action="http://www.southsun.com/php/tech_issue.php" enctype="multipart/form-data" method="post">
    <table style="width: 850px; font-size: 15px; padding-left: 20px; text-align: center;" border="0">
    <tbody>
    <tr>
    <td style="text-align: left; padding-bottom: 20px;" colspan="2">
    <h2><span style="color: #666666;">Please complete this form if you have any technical issue.</span></h2>
    </td>
    </tr>
    <tr style="padding-top: 40px;">
    <td style="text-align: left;"><span style="color: #abaf6f;"><strong>First Name</strong>:*</span><input id="first1" name="first" type="text" />  <br /><br /> <span style="color: #abaf6f;"><strong>Last Name</strong>:*</span><input id="last1" name="last" type="text" /><br /><br /> <span style="color: #abaf6f; padding-right: 33px;"><strong>Email</strong>:</span><span style="color: #abaf6f;">*</span><input id="email1" name="email" type="text" /><br /><br /> <span style="color: #abaf6f;"><strong>Shipping Method:</strong><br /></span> <input name="shippingmethod" type="radio" value="prioritymail" /> Priority Mail                                                                 <input name="shippingmethod" type="radio" value="store" /> In Store Pick up <br /> <input name="shippingmethod" type="radio" value="ground" />  Ground                                                                       <input name="shippingmethod" type="radio" value="3day" /> 3 Day Select<br /><br /> <span style="color: #abaf6f;"><strong>Payment Method:</strong><br /></span> <input name="paymentmethod" type="radio" value="paypal" /> Paypal Method                                                       <input name="paymentmethod" type="radio" value="creditcard" /> Credit Card<br /> <strong><br /> <span style="color: #abaf6f;">If getting an error message, please explain the error:</span></strong><span style="color: #abaf6f;"> <br /></span> <textarea id="errormessage" cols="20" rows="2" name="errormessage"></textarea><br /><br /></td>
    <td style="border-left: 1px solid grey; padding-left: 40px; text-align: left;"><span style="color: #abaf6f;"><strong>If using Paypal, Were you redirected successfully?</strong><br /></span> <input name="paypalredirect" type="radio" value="yes" /> Yes                                                                 <input name="paypalredirect" type="radio" value="no" /> No<br /><br /> <span style="color: #abaf6f;"><strong>If using Credit Card, Did you get an error?</strong><br /></span> <input name="carderror" type="radio" value="yes" /> Yes                                                                  <input name="carderror" type="radio" value="no" /> No<br /><br /> <span style="color: #abaf6f;"><strong>What happened after clicking place order? </strong><br /></span> <textarea id="placeorder1" cols="20" rows="2" name="placeorder"></textarea><br /><br /> <span style="color: #abaf6f;"><strong>Comments</strong>: <br /></span> <textarea id="comments1" cols="20" rows="2" name="strcomments"></textarea><br /><br /> <span style="color: #abaf6f;"><strong>Attach PrintScreen</strong>: <br /></span> <input name="strresume" type="file" />
    <div style="height: 50px;"> </div>
    </td>
    </tr>
    <tr>
    <td style="padding-top: 20px;" colspan="2">( * ) indicates required fields</td>
    </tr>
    <tr>
    <td style="text-align: center; padding-top: 20px;" colspan="2"><input class="button" name="submit" type="submit" value="Submit" />                        <input class="button" name="reset" type="reset" value="Reset" /></td>
    </tr>
    </tbody>
    </table>
    </form>
    </body></html>
    PHP
    <?php
    echo $savestring;
    //--------------------------paramaters--------------------------
    // Subject of email sent to you.
    $subject = 'prueba con uploads';
    // Your email address. This is where the form information will be sent.
    $emailadd = '[email protected]';
    // Where to redirect after form is processed.
    $url = 'http://www.pch-graphicdesign.com';
    // Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
    $req = '0';
    $target_path = "http://www.pch-graphicdesign.com/php/uploads/";
    $target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
    $text = "Results from form:\n\n";
    $space = ' ';
    $line = '
    foreach ($_POST as $key => $value)
    if ($req == '1')
    if ($value == '')
    {echo "$key is empty";die;}
    $j = strlen($key);
    if ($j >= 20)
    {echo "Name of form element $key cannot be longer than 20 characters";die;}
    $j = 20 - $j;
    for ($i = 1; $i <= $j; $i++)
    {$space .= ' ';}
    $value = str_replace('\n', "$line", $value);
    $conc = "{$key}:$space{$value}$line";
    $text .= $conc;
    $space = ' ';
    mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
    echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
    ?>

    Sending a file as an attachment to an email involves setting the correct MIME type and headers. There's a brief tutorial here: http://webcheatsheet.com/php/send_email_text_html_attachment.php.
    Also, you need to use the same name as in your form. In the script you have shown here, the name of the file field is strresume, but your processing script uses this: $_FILES['uploadedfile']['name']. It should be this: $_FILES['strresume']['name']

  • How can I add the attachment list pdf file context to purchase order ?

    Dear all,
           I have use services for object in ME22N to attach PDF file to purchase order,I want to know how can I add the pdf file context to purchase order when I send the purchase order to vendor.
    Thanks in advance
    Best regards,
    Merry

    hi,
    attach document through Service for Object button. Service for Object button available down side of Command screen ( in your PO screen ME22N ) .
    Click your Service Object button -> Create -> Create attachment 
    then select your window directory ( which file you need to attach) select your file Now your system shows message  Service "Create attachment" is started. 
    Save again your PO. You can see (open) your attachment in same field ( Service for Object ) select and Create and check attachment list. You can attach as many document in your PO.

  • Address book how do i add an attachment an image of a sign

    i want to be able to add an attachment to an address book entry, how can i do this

    Gotcha. No, Address Book isn't that flexible. You might want to look into Bento, which is a pretty nice database manager that links to your Address Book and allows you to add any kind of media to a database.
    Matt

  • How do I add or change a bookmark icon in the Bookmark drop-down menu?

    The icon for a web site that I recently bookmarked is a blank white square. How do I add/change the icon for a bookmark?

    You can look at one of these extensions:
    *Favicon Picker 2: https://addons.mozilla.org/firefox/addon/3176
    *Favicon Picker 3: https://addons.mozilla.org/firefox/addon/7849
    See also:
    * CheckPlaces: https://addons.mozilla.org/en-US/firefox/addon/checkplaces/

  • How do  I add an attachment (xls file in my case) to the pdf

    Hello,
    I need to add a excel file as attachment in the generated PDF form.
    Someone could tell me if this is possible and how to do it?
    Thanks for the help

    Hi,
    I did little research and found that we can attach any attachment to Interactive form.
    1.Get the XLS attachment(You can add File Upload UI Element(Say XLS) to your Application  and Bind  data,filename and mime Type  Properties)   with this , user can choose the XLS file to be attached from Desk top.
    2. In the Interactive UI Element,bind the property "pdfsource" (Say PDF_SOURCE), this will  contains the PDF in xstring format.
    3. Add a button (Say Attach XLS) on the application and add an Action Method.(Say ADD)
    4.in the Action Method(ADD) of the Button, follow the Steps.
        1. Get the File(XLS File) Uploaded,Mimi Type  from File Uploade UI Element(Say lv_xls_data,lv_mimetype,lv_file_name)
         2. get the pdf source( PDF_SOURCE) from Interactive form.(Say lv_pdf_source)
         use the Following Code
    DATA: l_fp           TYPE REF TO if_fp,
            l_pdfobj       TYPE REF TO if_fp_pdf_object,
            l_pdf          TYPE xstring,
            l_att          TYPE xstring,
            l_fpex         TYPE REF TO cx_fp_runtime,
            l_type         TYPE string,
            l_errmsg       TYPE string,
            l_short        TYPE sdba_actid,
            l_ext          TYPE sdba_funct,
            l_filename     TYPE skwf_filnm,
            l_mimetype     TYPE skwf_mime,
            l_attachment   TYPE sfpattachments,
            l_attachments  TYPE tfpattachments,
            l_len          TYPE i,
            l_tab          TYPE tsfixml,
            p_dest         TYPE rfcdest .
      MOVE cl_fp=>get_ads_connection( ) TO p_dest.
      l_mimetype   = lv_mimetype.
    * Get FP reference.
      l_fp = cl_fp=>get_reference( ).
      TRY.
    *     Create PDF Object.
          l_pdfobj = l_fp->create_pdf_object( connection = p_dest ).
    *     Set document.
          l_pdfobj->set_document( pdfdata = lv_pdf_source ).
           l_attachment-FILENAME = lv_file_name."Name of the Attached File.
          l_attachment-mimetype    = lv_mimetype.
          l_attachment-description = 'XLS_Attachment'.   
         l_attachment-data        = lv_xls_data."XLS File to Be attached .
          INSERT l_attachment INTO TABLE l_attachments.
          l_pdfobj->set_attachments( attachments = l_attachments ).
    *     Execute, call ADS.
          l_pdfobj->execute( ).
    *     Get result.
          l_pdfobj->get_document( IMPORTING pdfdata = l_pdf ).
        CATCH cx_fp_runtime_internal INTO l_fpex.           "#EC NO_HANDLER
        CATCH cx_fp_runtime_system INTO l_fpex.             "#EC NO_HANDLER
        CATCH cx_fp_runtime_usage INTO l_fpex.              "#EC NO_HANDLER
      ENDTRY.
    Finally "l_pdf" contains the PDF with Attached XLS and you can send this as PDF Document.
    Thanks.
    Uma

  • Mail - how do you add folders simply and how do you change the name of folders - simply.

    I'm new to Mac - have OS X 10.9.4 - love the machine.  But . . . as a long time PC user, I'm trying to learn to use Mail, Calendar and Contacts.  Mail and Calendars are so HARD to use when you are used to the power and elegance of Outlook.  Mail is just a downright pain compared to Outlook.  Calendar is really a plain jane.  That said, I love the Mac but could really use information about customizing mail appearance, setting up folders in mail, etc.  Also want to know how to customize calendar.  Where can I get good information.  I'm a fairly sophisticated user - want more than making font sizes different - I need to add some pizzazz.
    Thank you

    Thank you Barney.  Your info was helpful.  I purchased Outlook for Mac; I use it for Word and for Excel.  I like Keynote better than PP.  The Outlook software version is slightly different for a MAC than for a PC.  It would be fine but there seems to be compatibility issues - at least 2 x's a day I get knocked out of my msn or my outlook accounts and have to sign in again when I use Outlook on the MAC.  That's why I'm trying to switch over to Mail and Calendar.  I do like contacts on the MAC.
    I'm used to dressing up my mail and calendar on Outlook.  All mail messages I send are in a customized color, font, etc.  Mac has templates for stationary but they are a little hokey.  I just want a professional look with some color - possibly a simple border.  In Outlook calendar, I am used to a color coding system for various types of appointments (face to face vs. phone, in the office, vs. outside, with staff vs. external folks).  There does not seem to be any way to change the appearance of appointments in MAC - except for work or personal.  That just doesn't meet the use I've been accustomed to.
    Thanks for the help!

Maybe you are looking for

  • One wifi spot my iPhone connects to wifi but not internet. All other devices connect to internet.

    My iPhone connects to wifi just fine. When it does it connects to the internet just fine except in one location. My house. My MacBook Pro, my wife's iPhone and her iPad get on the internet there just fine. My Iphone's IP address it begins with a 10.

  • F110: how to pay an invoice with Withholding Tax and a credit memo?

    Hi All, in my SAP I've defined a Withholding Tax type for Payment Posting. I've posted a vendor invoice with with Withholding Tax. Later I've posted a credit memo with Withholding Tax which must compensate the prevuois invoice. When I launch t.code F

  • Configure DHCP to add non domain computers to DNS

    Hi We would like to add non domain computers automaticallly to DNS through our DHCP server. The reason is that we actally use Linux and our Linux admins would like the machines automatically to DNS when receiving a IP. I assumed that it was just a ma

  • Whaty is the tCode for ABAP Mapping

    HI all i m new to sap xi What r the adapters that related to sapr/3? How do bwe move objects to quality nd quality to production? What is Technical system in sld?(i want definition) Thaks all

  • Roaming between E3000 wireless router and WAP300N

    Hi all The Linksys router I've got in my office room at home is providing poor coverage in my living room. Thus I've purchased a WAP300N and connected it by wire to the build-in 4 port switch of my Router (E3000). The set-up is providing a significan