Attachments in Emails

I have the original iPad, and when I open an email with an attachment it doesn't give me the option to open it myself, it just automatically downloads in the text of the email. I need it to show up as an attachment to use a business app. What settings need to be changed?

There is no setting that you can change to control that. That's just the way that the mail app works with certain attachments. If it is a multiple page attachment, you have to tap on the icon to open it - but not a single page file - AFAIK.
You can open and save the attachment in another app and email it from the app that you save it in - assuming that the app supports email - which most productivity apps do.

Similar Messages

  • 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

  • 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

  • PDFmaker not converting Jpg attachments to emails in Microsoft Outlook 2013

    I am having problems converting jpg attachments to emails in Microsoft Outlook 2013 using PDFmaker. I'm running Adobe Acrobat 11 and just updated it to the latest version and that did not solve the problem.
    I can convert the emails and Word attachments and can convert the jpgs manually by saving them to my desk top and then adding them as attachments to the resulting PDF but I have several emails each was several attachments that I want to save and it will take me hours to do it manually.
    I was thinking there might be some security setting on the jpgs that is preventing PDFmaker from automatically converting them.
    I already confirmed that the Preference Conversion Setting is selected to include all attachments in the Adobe PDF. I also unselected the box that reads "block download of external content" but it did not help.

    Manual method is a difficult task .You can easily transfer your mails from the Thunderbird to MS Outlook using third party conversion software.i faced the same problem.i tried the following utility. It converts all my Thunderbird accounts to a single PST.you can also try the free demo version of the software.
    http://www.datacarelab.com/software-for-mbox-to-outlook.php

  • 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>

  • 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+

  • Cannot open PDF attachments in email, get administrator logon using Acrobat X?

    Cannot open PDF attachments in email, get administrator logon using Acrobat X?

    I have no problem opening PDF attachments that arrive in my Outlook 2003 Inbox; they open fine with Adobe Reader 9. It may be an issue with your email client.
    But if you think that Adobe Reader 8 will fix it, you can download it from http://download.adobe.com/pub/adobe/reader/win/8.x/8.1.3/enu/AdbeRdr813_en_US.exe - make sure that you uninstall Reader 9 first (and Acrobat.com & Adobe AIR).

  • My pdf attachments to emails suddenly will no open.

    I have had no problem opening pdf attachments to emails. I have done this repeatedly. Over the last day, I have suddenly had problems opening pdf attachments to emails. If I reboot the computer, I may get one or two pdf attachments to open and then they stop opening.

    Have you tried to open a very old iPhoto library from iPhoto 6 or earlier and downloaded
    iPhoto Library Upgrader 1.0.?  Then it does not suffice to install the upgrader, you need to run it and to upgrade the library.
    Or do you get this error message for your current iPhoto library?

  • How do I get Adobe to read PDF attachments to emails automatically?

    How do I get Adobe to read PDF attachments to emails automatically?

    You can't. If you could it would be a HUGE security bug, and would be quickly fixed.

  • TS1506 If iPad cannot open RTF attachments in emails how am I to tell my bank, telephone company,etc how to send their emails? Will there be a fix for this

    If iPad cannot open RTF attachments in emails how am I to tell my bank, telephone company,etc how to send their emails? Will there be a fix for this?

    Try this app:
    http://itunes.apple.com/sg/app/istudious-lite-note-taking/id488800914?mt=8&ls=1

  • E51: How not to receive attachments in email?

    Hi,
    I can't find anywhere how to disable attachments in emails!
    I just want to receive the text. I can't believe it's not possible
    If I put maximum mail size to, let's say 2kb, it still downloads the larger attachments...
    Headers only doesn't work too.
    Is that normal?
    Thanks in advance,
    Jelle
    Nokia E51
    Solved!
    Go to Solution.

    There are other e-mail progs like Profimail and Emoze whitch can be customized much better. I prefere Profimail. There is a trial version for 28 days on the net. Emoze is free.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Attachments via email from my ipad?

    How can I send pages and numbers documents as attachments via email from my ipad?

    There are instructions for Pages here http://help.apple.com/pages/ipad/1.4/#tan72489eaa , but basically it's down via the document itself in the Pages app. Numbers help is here http://help.apple.com/numbers/ipad/1.4/#tan727195cd

  • Attachments with emails are a PROBLEM!

    Boy...I just dread having to send attachments with emails. Even a simple, one page flyer in pdf form! I have high speed internet connection - but no matter what size the attachment the emails just won't send. They repeatedly time out and/or have the drop down menu pop up to select another server (have three different email addresses/servers). No matter what server I use the emails will sit in the "outbox" all day and sometimes more than one day before they actually get sent. Does this happen to anyone else? Ideas to fix? THANKS!!

    I am referring to new email messages, generated by me - sending to a recipient - that include attachments (usually pdf's) from my MacBook Pro. It is quite frustrating.... Thanks for your interest in helping me with this!

  • I'm losing attachments from email how do I retrieve  them from cloud

    Im losing attachments from email @me.com how do I retrieve them from icloud?
    CHeers Mitchell

    Tap Settings > iCloud
    Switch Mail off then back on.
    Give iCloud a few minutes to re sync your Mail.

  • How to copy and paste outlook attachments between emails

    Hello
    Is there a way to copy and paste outlook attachments between emails instead of drag and drop? I`m a new Mac user, on windows I clicked on mouse and the option copy and paste was there... I don´t see this option on Mac.
    Thanks.

    Hi Hans,
    I can get a reference error here if the destination table does not have that range available while the source table does. 
    Are you sure your desination table has exactly the same structure and dimensions as your source table?
    If it does, copy/paste via the Formula Editor should work. It works reliably here.
    Also the formula in your latest post looks as if it might be corrupted-- lots of extra spaces (it seems).  Did your orginal formula have those?
    To sort this out, suggest turning off 'Use header names as labels' in Preferences.
    If you end up with a formula in a cell as just Text (as Ian describes that's what happens when you copy from Numbers 2) you can convert that text to a formula by double-clicking the cell, clicking just before the text so that the insertion point appears in front of it and typing =. That activates the Formula Editor with the formula in it, which you can accept by clicking the green checkmark or hitting return.
    SG

  • HT204266 How can I download photos that are attachments to emails into Iphoto?

    How can I download photos that are attachments to emails into Iphoto?

    Unfortunately, you're in the wrong forum.  This is not the Elements forum.
    Here's the link to the forum you want:
    https://forums.adobe.com/community/photoshop_elements/content

Maybe you are looking for

  • Slow Performance with Business Rules

    Hello, Has anyone ever had slow performance with business rules? For example, I attached a calc script to a form and it ran for 20 seconds. I made an exact replica of the calc script in a business rules and it took 30 seconds to run. Also, when creat

  • Creation of movt.type - unique requirement

    Dear Friends, Here i am enclosing my unique requirement to create a movement type. In sales returns PGR (Post goods receipt) done automatically material document will be updated. This is value is picks in material master, this is normal process. In n

  • Mouse pointer stays rainbow

    Lately, my mouse pointer has been staying as the rainbow circle even after a process if finished. Mostly notice it after switching back to my user from another. The pointer will not change to an arrow until I open Safari and roll over a button (which

  • How difficult is it to learn OAF?

    Guys I have 10 yrs exp of apps development, but only of the 'traditional' d2k toolset + pl/sql, workflow etc. I now realise that i really need to know oaf , but looking at the manual it seems daunting to learn, especially when you don't have java/web

  • I have Photoshop 2014; how do I go back to the CC version?

    I'm having troble going to school and trying to use a Ps 2014 document when they havent upgraded yet because we are in the middle of a quater. how do i just go back to CC to makle things eaiser for me?