How do I send attachments in email as an icon

How do I send attachments in email as an icon

I mean when I have dropped a photo into the email how do I then change that to an icon so that other non Mac users can see it easier

Similar Messages

  • How do I send attachments by email from my iPad

    How do I send attachments by email from my iPad

    The thing to remember is that iOS email attachments start with the document itself, not from the Mail app.
    1. Select the thing you want to send in an app that handles it, (for example a Photo might be sent from Photos, a PDF from GoodReader etc.)
    2. Then tap the "share" button (which I see others have kindly posted screenshots for) and create an email containing that attachment.
    Peter
    <Link Edited By Host>

  • How do I open attachments in emails I have received?

    How do I open attachments in emails I receive to view them before I send them on to friends?

    Often, pictures or simple documents (eg, one-page PDFs) will appear directly within the message itself. You can also use the Quick Look button next to the attachments line (in the message header) to view and scroll through the files (provided they're viewable, and aren't compressed or binary files).
    You can also click Save next to Quick Look to save the files to your Downloads folder.
    Matt

  • How can I send pictures or email from my desktop to a cell phone?

    How can I send pictures or email from my desktop to a cell phone?
    I use Gmail for my emails.

    By sharing playlists you mean sending the list of song titles along with the songs themselves you can't.  That would violate Apple's contracts with the studios regarding sharing music, videos, books, etc.  Which is strictly forbidden. With the single exception that I am aware of which is Home Sharing.
    If you just want to share the list of song titles you could take a screen shot and email that.  Hold down the home button and press and release the power button.  The image is then stored in your camera roll.

  • How do i send photos in email as jpegs?

    how do I send photos in email as jpeg files rather than sending the picture as it is. when i attach a picture it appears as it is rather than a file. is there a way to attach it as jpeg file rather than a single image?

    I mean when I have dropped a photo into the email how do I then change that to an icon so that other non Mac users can see it easier

  • How do I send a group email messages then save it for later???

    How do I send a group email messages then save it for later???is there a way that i can save couple of people for whenever want to send an email for them by clicking on my save group get access easily to specific people.
    Thankssss

    You can set up email groups in Contacts. The articles says Address Book (Contacts old name), but it still works.
    Contacts – Create Mail Group

  • How do I send a group email from Droid MAXX Gmail android app?

    I have multiple groups setup in PEOPLE. How do I send a group email from my GMAIL app?

        glenholmes,
    You've come to the right place for help. Sorry to hear that you have had hard time with your Gmail app lately. What steps have you tried to get this to work? We want to ensure that you are able to start sending those messages right away.
    ErinW_VZW
    Follow us on Twitter @VZWSupport

  • How do I send and receive email with my @me email account

    I want to drop yahoo as my email provider, so how do I send and receive email using my @me account.  Using yahoo, you go to yahoo, then mail and your good to go. I'm not a tech expert and fairly new to apple products and would like the improved security of an apple address.

    Hi stephraerae,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    iOS: Adding an email account
    http://support.apple.com/kb/ht4810
    iCloud is one of the options you can choose for your email provider.
    iCloud: Set up iCloud Mail on your devices
    http://support.apple.com/kb/PH2621
    This article includes the specific iCloud server settings:
    iCloud: Mail server information
    http://support.apple.com/kb/HT4864
    Hope that helps ...
    - Judy

  • How do I send Plain Text email and view HTML email as Plain text

    On the Z10, how can I send a plaintext email message?And how can I view an email message as plain text?  

    I agree with everyone else here. For Blackberry NOT to allow text email just seems ludicrous. It is the kind of thing Apple would do to their hypnotized fans. Surely it isn't up to Blackberry to dictate how people send and receive email. There job is to enable people to work in the way that they want to work, which for many people means TEXT only emails. Like others I have run into problems using systems that expect text only emails (e.g. Toodledo) and just figured I would switch the Z10 to text mode. Shocked when I found out I couldn't. I really like my Z10, but can't help but feel in some ways Blackberry have made massive backwards strides, e.g. Blackberry Protect, Blackberry Connect (is that the thing that connects it with the playbook - I can't remember as I stopped using it when I realized all the features had vanished), etc. Come on Blackberry, we want killer features in the Z10 and not features killed :-)

  • How do I  Send HTML formatted email  using  class in  javax.mail pkg

    How do I Send HTML formatted email using javax.mail pkg class ?i mean is thr any class available in this package to do this ?

    Please see
    http://javaalmanac.com/egs/javax.mail/SendApp.html
    for Quintessential Program to Send E-Mail.
    Then substitute line
    msg.setText(content);
    /with this one
    msg.setContent( content , "text/html");
    it should do in simplest form.

  • How do I send attachments (documents) as a PDF?

    How do I send attachments (documents) as a PDF?

    <http://support.apple.com/kb/HT2500>
    Look for "Adding attachments and photos".

  • How do we send photos by email in Photoshop Elements 13?

    How do we send photos by email in Photoshop Elements 13?

    Hi Gordon,
    It is not a good idea to post live email addresses in replies as this is a public forum and somebody might harvest the addresses for scamming.
    For clarification, I will go through the preferences that you should have set up.
    Go to Edit -> Preferences - Email
    Click on the New button
    Give it a Profile Name like MyGmail, select Gmail from the drop down list of service providers and then click on OK
    Enter your Email address - this is the account to send the photos from not who you are sending them to. The address should be in the format [email protected]
    Enter your name
    Enter the password for the email account you gave in 4 above
    Click on Validate - It should come back and say credentials validated successfully - if not check your settings.
    Click on OK and close the preferences.
    Now try sending a photo.
    Brian

  • Sending attachments with emails in Javamail

    I'm trying to send attachments with emails using Javamail. Following is the code through which I'm trying to achieve that. It works as expected on a JRE1.6 environment. But on JRE1.5, the content of the file gets added to the mail body as text.I want the file to be sent as an attachment.
    Any pointers on the observed difference in behavior would be highly appreciated!
    String msgText = mailInfo.getMessage();
            String attachmentFileName = mailInfo.getFileName();
            MimeBodyPart mimeBodyPart = new MimeBodyPart();
            mimeBodyPart.setText(msgText);
            // create the second message part
            MimeBodyPart attachmentBodyPart = new MimeBodyPart();
            // attach the file to the message
            FileDataSource fileDataSource = new FileDataSource(attachmentFileName);
            attachmentBodyPart.setFileName(fileDataSource.getName());
            attachmentBodyPart.setDataHandler(new DataHandler(fileDataSource));
            // create the Multipart and add its parts to it
            Multipart multipart = new MimeMultipart();
            multipart.addBodyPart(mimeBodyPart);
            multipart.addBodyPart(attachmentBodyPart);
            message.setContent(multipart);The email in case of JRE1.5 is as follows
    {color:#0000ff}------=_Part_0_33189144.1233078680250
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit
    Hi...Test Mail
    ------=_Part_0_33189144.1233078680250
    Content-Type: application/octet-stream; name=corba_architecture.pdf
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment; filename=corba_architecture.pdf
    Content-ID: Attachment
    JVBERi0xLjIgDSXi48/TDQogDTggMCBvYmoNPDwNL0xlbmd0aCA5IDAgUg0vRmlsdGVyIC9GbGF0
    ZURlY29kZSANPj4Nc3RyZWFtDQpIiUWPW07DMBBFV+A93E9QlWBP/Kj5awt8USFRbyBKnTQIkshK
    YfvYcQoaybrSzDkzFhCxQgemeWkUyKTXEIeSHMGjZXvHSFBJCpXUpQLcE+NIlbCHFw4pUxeuZQUv
    ueY25gYxk9mKmH9wtwvNpZ99M1+jc2wxXzxweHvf73AP9xGFhaIsTyC3/w6ZDYfxaxoHP8w4jmf/
    ------=_Part_0_33189144.1233078680250-- {color}

    Following is the debug trace obtained on running the program on 1.5.
    +12:45:57,218 INFO [MailerThread] EmailManager:306 - Sending message {toAddress [email protected],+
    +replyTo =null,+
    +cc =null,+
    +message =Hi...Test Mail,+
    +subject =test mail,+
    +contentType =null fileName =C:\docs\cbe\dist computing\A.txt }+
    Loading javamail.default.providers from jar:file:/C:/docs/cbe/lib/mail-1.4.jar!/META-INF/javamail.default.providers
    DEBUG: loading new provider protocol=imap, className=com.sun.mail.imap.IMAPStore, vendor=Sun Microsystems, Inc, version=null
    DEBUG: loading new provider protocol=imaps, className=com.sun.mail.imap.IMAPSSLStore, vendor=Sun Microsystems, Inc, version=null
    DEBUG: loading new provider protocol=smtp, className=com.sun.mail.smtp.SMTPTransport, vendor=Sun Microsystems, Inc, version=null
    DEBUG: loading new provider protocol=smtps, className=com.sun.mail.smtp.SMTPSSLTransport, vendor=Sun Microsystems, Inc, version=null
    DEBUG: loading new provider protocol=pop3, className=com.sun.mail.pop3.POP3Store, vendor=Sun Microsystems, Inc, version=null
    DEBUG: loading new provider protocol=pop3s, className=com.sun.mail.pop3.POP3SSLStore, vendor=Sun Microsystems, Inc, version=null
    DEBUG: getProvider() returning provider protocol=smtp; type=javax.mail.Provider$Type@77eaf8; class=com.sun.mail.smtp.SMTPTransport; vendor=Sun Microsystems, Inc
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG SMTP: trying to connect to host "10.16.68.131", port 25, isSSL false
    +220 mailhost5.vmware.com ESMTP Postfix (mailhost5)+
    DEBUG SMTP: connected to host "10.16.68.131", port: 25
    EHLO sbanerjee
    +250-mailhost5.vmware.com+
    +250-PIPELINING+
    +250-SIZE 26800000+
    +250-VRFY+
    +250-ETRN+
    +250-ENHANCEDSTATUSCODES+
    +250-8BITMIME+
    +250 DSN+
    DEBUG SMTP: Found extension "PIPELINING", arg ""
    DEBUG SMTP: Found extension "SIZE", arg "26800000"
    DEBUG SMTP: Found extension "VRFY", arg ""
    DEBUG SMTP: Found extension "ETRN", arg ""
    DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", arg ""
    DEBUG SMTP: Found extension "8BITMIME", arg ""
    DEBUG SMTP: Found extension "DSN", arg ""
    DEBUG SMTP: use8bit false
    MAIL FROM:<[email protected]>
    +250 2.1.0 Ok+
    RCPT TO:<[email protected]>
    +250 2.1.5 Ok+
    DEBUG SMTP: Verified Addresses
    DEBUG SMTP:   [email protected]
    DATA
    +354 End data with <CR><LF>.<CR><LF>+
    ------=_Part_0_3278348.1233126957281
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit
    Hi...Test Mail
    ------=_Part_0_3278348.1233126957281
    Content-Type: text/plain; charset=us-ascii; name=A.txt
    Content-Transfer-Encoding: 7bit
    Content-Disposition: attachment; filename=A.txt
    Content-ID: Attachment
    adasdasdd
    ------=_Part_0_3278348.1233126957281--
    +.+
    +250 2.0.0 Ok: queued as 5BE5BDC100+
    +12:45:59,125 INFO [MailerThread] EmailManager:331 - Message {toAddress [email protected],+
    +replyTo =null,+
    +cc =null,+
    +message =Hi...Test Mail,+
    +subject =test mail,+
    +contentType =null fileName =C:\docs\cbe\dist computing\A.txt } sent to the SMTP server successfully+

  • How do I send out and email so I can receive confirmation email has been received?

    How do I send out an email, so that I can recieve confirmation that email was delivered?

    If you are using Apple Mail, it does not support read receipts. Even if it did, most people will ignore such requests, so at best, it'd be a hit and miss situation.

  • How to "decode" picture attachments to emails

    I get lots of family pic attached to emails but I cannot get them into PSE10 apparently because I did not decode them correctly. -- ??

    Thank you.
    If my people, who are called by my name, will humble themselves and pray and seek my face and turn from their wicked ways, then will I hear from heaven and will forgive their sin and will heal their land. 2Chron.7:14
    hyadav <[email protected]> wrote:
    =============
    hyadav http://forums.adobe.com/people/hyadav created the discussion
    "Re: how to "decode" picture attachments to emails"
    To view the discussion, visit: http://forums.adobe.com/message/5261505#5261505

Maybe you are looking for

  • Bridge Help | Work with metadata in Adobe Bridge

    This question was posted in response to the following article: http://helpx.adobe.com/bridge/using/metadata-adobe-bridge.html

  • How Do I Search For A Photoshop Link

    I have been given the following link to a page showing search paths on an iMac computer. Can anyone please tell me how I create the search.? I have tried Spotlight which does not recognise the paths listed. http://helpx.adobe.com/photoshop-elements/k

  • Files disappear when selected.

    I have several MP4 and M4V files on an external MyBook Studio 500 GB hard drive. All but 4 show a small preview. These remaining 4 show the QuickTime logo, but when I select these files, they disappear. If I then click away and then back to this fold

  • CL_GOS_SERVICE - Authorization check before activating GOS

    Hi, I am trying to figure out if it is possible to restrict the activation of GOS button depending on the user authorization for the selected object. Based on my very basic level understanding of abap, i think that we would need to inherit a class fr

  • Getting attributes / Using in movie (multiuser server)

    Hello, I am using multiuserserver and want to use the get attribute function to fetch the data and set it into an text member.. So that the users can see what difficulty that selected. For example gxtra.SendNetMessage("system.DBUser.GetAttribute","gS