Sending attachments with email from iPad

Can I send attachments, such as a pages file, when I send an email from my iPad?
Thanks for your help

If you want to send photos, you can do it two ways:
1. From Photos, tap the rectangle with the curved arrow, then tap the photos you want to send, then tap the Share button to create a new mail message.
2. From an already created mail message, do a copy-paste from Photos to include photos in the mail message.
Other apps are a little different. You can always copy-paste but that may get cumbersome.

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>

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

  • Why can I not send attachments with emails?

    Since updating to Maverick have been unable to send attachments to emails. WHY?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Can not send attachments with emails on Me and aol Imap??

    I have an aol and MobileMe imap accounts set up with my mac mail, but I can not send any email with attachemnts no matter how small the smallest I have tried is 152Kb. I have been reeding the threads about not being able to send any email, but I can send and recive emails(with attachments) just not send with attachments.I have been able to send attachments with my aol Imap account before.
    I have recently signed up to Mobile me and created the Me Imap account, this is the first time I have had to send an attachment. Is it something to do with the Mobile me?? Any help much appreciated
    still relitivly new to Mac....

    Hi Kursten, and a warm welcome to the forums!
    Have you tried Port 587 instead of 25 for the .me account anyway?
    Mail>Preferences>Accounts>Outgoing SMTP>Server Settings...

  • How can a send a group email from ipad

    How can I send a group email from iPad

    You need a third party app. You can't create contacts groups in the built in mail app. Look at...
    http://solubleapps.com/mailshot/
    or
    http://www.redbits.com/iphone/groupemail/

  • Sending out group email from iPad iPhone

    I have groups in contacts but cannot send 1 email to all as a group on iPad iphone
    Thanks

    Work Around:
    On your mac:
    1.  Open a new email
    2.  Insert name of an existing group into one of the "To" fields as usual.
    3.  Highlight all the resulting names in the "To" entry
         [Highlight first name, and while holding shift, highlight last name and all will highlight[]
    4. Copy (Command C) the highlighted emails
    5. Paste (Command V) nto a pages document
    6. Remove the name and anything else preceeding the first < and also the first < of only the first entry whixh will look like this:
         [email protected]>,
    7. Remove the > of the last email which will look like this:
         , Jane Doe <[email protected]
    8. Copy the entire altered list from the pages document
    9, Go to Contact Book and click + to add a new entry
    10.. Name the entry (XXX Group for iPad) or whatever you wish to call it
    11.  Paste all the copied altered list into any one of the email entry spaces
    12.  Click on "Done"
    13.  Create new email On iPad and click on + in any one of the "To" lines and search for "XXX Group for iPad"  You cannot just key in XXX Group for iPad!!!!!!!, you must use + contact search.
    14.  Enter the selected iPad contact group into the "To" line.
    15.  All the entries will now appear in the "To" line and you are good to go.
    Adding or deleting email addresses from the iPad group:
    Easiest:  Alter the original mac group in the usual way and repeat steps 1-14 above.  It seems impossible to edit within the emai line of the iPad contact entry.
    Rediculously simple once figured out.
    Happy emailling, but please send Bcc so that you don't spread your groups' email addresses all over the internet for spam, viruses, and other unwanted emails.  Be considerate and ask your recipients to notifiy you if they wish to be deleted from the lists you compose.

  • Send attachments with Email in WebDynpro[Java]

    Hi All,
    Developing a webdynpro application in Java Which will  sending -mail.Is it Possible to send attachments[Ex: Excel/doc Files] in webdynpro ?How to do it ?Please Help me out..
    Regards,
    Ramganesh.

    Hi,
    Try this code;
    Properties properties = new Properties();
         properties.put( "mail.smtp.host", <>);
         Session session = Session.getInstance( properties, null);
         MimeMessage message = new MimeMessage( session);
         try
              MimeMultipart multipart = new MimeMultipart();
              BodyPart messageBodypart = new MimeBodyPart();
              message.setFrom( new InternetAddress( <sender mail id>));
              message.setRecipient( Message.RecipientType.TO, new InternetAddress( wdContext.currentContextElement().getP_Email_Id()));
              message.setSubject( "Subject");
              messageBodypart.setText( "Text");
              multipart.addBodyPart( messageBodypart);
              messageBodypart = new MimeBodyPart();
              messageBodypart.setDataHandler( new DataHandler( new FileDataSource( <Path of file>)));
              messageBodypart.setFileName( new FileDataSource( <Path of file>).getName());
              messageBodypart.setHeader( "Content-Type", "application/pdf");
              multipart.addBodyPart( messageBodypart);
              message.setContent( multipart);
              Transport.send( message);
         } catch (AddressException e1) {
              // TODO Auto-generated catch block
              e1.printStackTrace();
         } catch (MessagingException e1) {
              // TODO Auto-generated catch block
              e1.printStackTrace();
    Regards
        Vinod V

  • How can I Send song by email from ipad ?

    I mean from songs already existed in my Music.

    You can't. You can Gift a song in iTunes if you pay for it, but you can't send an existing song via email. If you could, people would be sharing purchased music all the time.

  • Sending attachments with emails

    Hi,
    Can anyone tell me/show me how to send an attachment that is uploaded from the client?
    Thank you.

    Hi,
    Can anyone tell me/show me how to send an attachment that is uploaded from the client?
    Thank you.

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

  • TS3899 Whenever I send a email from iPad mail app with an attachment from pages or numbers, the receiver is getting only attachment in the email. They are getting the email content. How to troubleshoot this issue.

    Whenever I send a email from iPad mail app with an attachment from pages or numbers, the receiver is getting only attachment in the email. They are getting the email content. How to troubleshoot this issue.

    Someone is probably sending spam with your address forged on the To: line.  Could be one of your old contacts with a Windows machine has a virus that's doing it.  It's also possible your e-mail account has been hacked, though I'd think such a hacker would be a bit more purposeful.
    For more information, see:
    http://www.reedcorner.net/guides/macvirus/is_it_malware.php#spam
    * Disclaimer: links to my pages may give me compensation, and should not be taken as endorsement of my services by Apple.

  • 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

  • Sending emails from ipad

    No problem sending emails from desktop Windows Live Mail, nor from BT email in BT.com but cannot send emails from ipad. No problem receiving them. Partner cansend and receive from all devices.
    Have asked for help/ call backs.Told need level 2 tech help. All times fixed for Level 2 call back ( now 3-4 times ) have not been honoured. Last one at 4.30 pm today. Am getting desperate.

    normandy wrote:
    No problem sending emails from desktop Windows Live Mail, nor from BT email in BT.com but cannot send emails from ipad. No problem receiving them. Partner cansend and receive from all devices.
    Have asked for help/ call backs.Told need level 2 tech help. All times fixed for Level 2 call back ( now 3-4 times ) have not been honoured. Last one at 4.30 pm today. Am getting desperate.
    Hi. Welcome to the forums.
    I'm afraid that the answer is pretty much one of your settings, or even possibly because you may not be on your internet connection via wifi.
    What errors are you getting ?
    Make sure that you are connected to the internet via your BTinternet connection rather than maybe any 3g/4g connection.
    But the main thing is to check those settings. What is the outgoing email server? What is the port setting? What is the SSL/TLS setting. And make sure smtp authentication is set on.
    Pop back with some answers
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • Can't seem to send email from iPad Air.

    Transferred from iPad to iPad Air   Also upgraded to new iPhone.  No prelims with email with iPhone.  Receive but can't send email from iPad Air.  Says server rejected email.  Same email sent fine from phone.  Suggestions?  Settings are the same on both devices. 

    Found my own answer.  Although I carried over settings from former iPad, the outgoing server was not set up completely. 

Maybe you are looking for

  • Moving ipad music to macbook

    Had iTunes on PC/Windows with music on Ipod.  Moved to MacBook Pro, but now when I attempt to sync from Ipod to MacBook (and hopefully to Ipad) I get message that Ipod isn't associated and my only option is to delete music on Ipod.  HELP.

  • Getting mouse position into flash from JavaScript?

    Is there a way to get mouse coordinates in a browser that is cross browser compatible? I am able to track the mouse coordinates in all browsers except FireFox (Windows). In Windows firefox I can track the coordinates outside of the flash object but n

  • SOAP VERSION Issues

    Hi, We are using Coldfison 8/IIS 6.0/Windows 2003 server. We are invoking a third party web services which are hosted in Internet. When we invoke the web service, Coldfusion is using SOAP1.1 and the generated SOAp is in version 1.1 But the web servic

  • Music library duplicate songs

    Anyone know why ios5 duplicates ALL my songs like 2-3 times in the music library> I have itouch 4g white

  • E61 email problems (IMAP)

    Hello! I recently started to use E61's in work and there are several problems with E-mail. We have company Lotus Domino server (6.5.3) and I want to use E61 for users on trips to have access to the E-mails. I configured 3x E61 for start to check how