Sending multiple photos with iOS4

Am I missing something here or does the latest update NOT let you send multiple photos anymore? Kinda annoying that they took that feature away.

It is possible to send multiple images via email by selecting them from the photo album first, then selecting share> email. It also looks like you now have the option to not downscale the images as was done in v3.1.3 via copy > pasting multiple images to email. So overall, iOS4 is a big improvement in this regard.

Similar Messages

  • Sending multiple photos in mail

    I read an old post that said it was not possible to send multiple photos in mail from the iPhone. Well, I have done it, but in a rather clunky fashion.
    I first made a new message to send, but left the To: address empty.
    I then went to the camera roll and selected one photo by holding my finger on it for a short time, long enough for the "Copy" option to pop up. I copied it.
    I returned to mail and pasted that photo into the message area.
    Returned to the camera roll and copied another photo
    Returned to the mail, entered 2 returns after the existing photo and pasted again.
    I then entered the recipients address. (For some reason the paste option would not appear if I entered the To: field first)
    This way you don't get the opportunity to make the photo sizes medium or small, but if the message is too large you are given the option of do that. It minimizes just enough of the photos to pass the size test, but it did work.
    This is clunky. Does anyone know of a better way to do it?
    Thanks, John Shanks

    You can select more than one photo at a time followed by selecting copy if you have aleady started composing a message and if not, you can select more than one at a time followed by selecting Share instead which will create a new email with each photo added as an attachment.

  • Why can't I send multiple pictures with my iPad? I can only send them one by one please help.

    Why can't I send multiple pictures with my iPad? I can only send them one by one please help.

    Are you trying to do this from the photos app or from the mail app? Explain in a little detail what is happening when you try to select multiple photos.
    No matter which app you are using, you can try quitting the apps completely and then reboot the iPad and try again.
    Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • How do I send multiple photos from my ipad2... only let's me choose one!!!

    how do I send multiple photos from ipad2

    If you view the photos in thumbnail view, as opposed to full screen, then via the icon of the box with the arrow coming out of it at the top right of the app you should be able to select up to 5 photos and attach them to an email via the Email button towards the top left of the app (on iOS 5 it's via Share not Email).

  • How can I send multiple photos in an email?

    How can I send multiple photos in an email?

    In Photos, when looking at your pictures, click the Action arrow first (upper right), before selecting any pictures.  Then you can tap select the pictures you want to send then click "Share" in the upper left.  From there you can Email.
    If you click and open one picture first, the Action button will only allow you to share that one picture.
    (Yeah, took me a while to figure this out. )
    ivan

  • I have a large number of photos imported into iPhoto with the dates wrong.  How can I adjust multiple photos (with varying dates) to the same, correct, date?

    I have a large number of photos imported into iPhoto with the dates wrong.  How can I adjust multiple photos (with varying dates) to the same, correct, date?

    If I understand you correctly, when you enter a date in the Adjust Date and Time window, the picture does not update with the date you enter.  If that is the case then something is wrong with iPhoto or your perhaps your library.
    How large a date change are you putting in?  iPhoto currently has an issue with date changes beyond about 60 years at a time.  If the difference between the current date on the image and the date you are entering is beyond that range that may explain why this is not working.
    If that is not the case:
    Remove the following to the trash and restart the computer and try again:
    Home > Library > Caches > com.apple.iphoto
    Home > Library > Preferences > com.apple.iPhoto (There may be more than one. Remove them all.)
    ---NOTE: to get to the "home > library" hold down option on the keyboard and click on "Go" > "Library" while in the Finder.
    Let me know the results.

  • Can I send multiple photos on one e mail.

    As the title says. Is it possible to send multiple photos on one e mail and if so how?
    Many thanks.

    There isn't an option for it.

  • Iam unable to send multiple attachments with a mail using JavaMail?

    Hai to all,
    Iam unable to send multiple attachments with a email,see
    iam have succeeded in sending one attachment with a email.
    when iam tring to add two or more attachments to a mail,
    it is giving a Exception like this:
    javax.mail.MessagingException: IOException while sending message;
    nested exception is:
    java.io.IOException: No content
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:577)
    at javax.mail.Transport.send0(Transport.java:151)
    at javax.mail.Transport.send(Transport.java:80)
    at AttachFilesModified.sendMail(AttachFilesModified.java:185)
    at AttachFilesModified.main(AttachFilesModified.java:43)
    this is my code snipnet:
    BodyPart messageBodyPart = new MimeBodyPart();
    Multipart multipart = new MimeMultipart();
    if(body != null)
    messageBodyPart.setText(body);
    multipart.addBodyPart(messageBodyPart);
    /*if(attachments != null)
    for(int i = 0; i < attachments.length; i++)
    String filename="D:\\nagaraju\\apachi\\axis-bin-1_3.zip";
         //String s[]=filename.split("\\");
         //System.out.println(s);     
              //String s1=s[1];
              //String filename1=s[s.length-1];
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(filename);
         messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName(filename);
    multipart.addBodyPart(messageBodyPart);
         //second file attaching
         /*String filename1="C:\\nagadoc.txt";
         BodyPart messageBodyPart1=new MimeBodyPart();
         DataSource source1=new FileDataSource(filename1);
         messageBodyPart.setDataHandler(new DataHandler(source1));
         messageBodyPart.setFileName(filename1);
         multipart.addBodyPart(messageBodyPart1);
    mess.setContent(multipart);
    Address[] allRecips = mess.getAllRecipients();
    if(toStdOut)
    System.out.println("done.");
    //System.out.println("Sending message (\"" + mess.getSubject().substring(0,10) + "...\") to :");
    System.out.println("Sending message................");
    for(int i = 0; i < allRecips.length; i++)
    System.out.print(allRecips[i] + ";");
    System.out.println("...");
    Transport.send(mess);
    if(toStdOut)
    System.out.println("done.");
    return 0;
    What's wrng with that code snipnet?
    Nagaraju G.

    This works fine with me, try it or compare it if you want.
    public void sendEmail( String from, String to,
    String subject, String body) {
    fMailServerConfig.put("mail.smtp.host", " <<mail server>>");
    Session session = Session.getDefaultInstance( fMailServerConfig, null );
    MimeMessage message = new MimeMessage( session );
    try {
    message.setFrom(new InternetAddress(from));
    message.setRecipient(Message.RecipientType.TO,
    new InternetAddress(to));
    message.setSubject( subject);
    message.setText( body);
    //Adds Attechment:
    Multipart multipart = new MimeMultipart();
    BodyPart messageBodyPart = new MimeBodyPart();
    messageBodyPart.setText("Here are my attachments");
    multipart.addBodyPart(messageBodyPart);
    messageBodyPart = new MimeBodyPart();
    //first attachment
    DataSource source = new FileDataSource("C:\\img1.jpg");
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName("C:\\Telnor1.jpg");
    multipart.addBodyPart(messageBodyPart);
    //Second attachment
    DataSource source2 = new FileDataSource("C:\\img2.jpg");
    messageBodyPart.setDataHandler(new DataHandler(source2));
    messageBodyPart.setFileName("C:\\Telnor2.jpg");
    multipart.addBodyPart(messageBodyPart);
    //etc...
    message.setContent(multipart);
    Transport.send( message );
    }catch (MessagingException e){
    System.err.println("Cant send mail. " + e);
    The error on your code might be:
    BodyPart messageBodyPart1=new MimeBodyPart();
    DataSource source1=new FileDataSource(filename1);
    messageBodyPart.setDataHandler(new DataHandler(source1));
    messageBodyPart.setFileName(filename1);
    multipart.addBodyPart(messageBodyPart1);
    You don't need to create a new BodyPart, and apart from that you'r seting values on "messageBodyPart" but adding "messageBodyPart1" to your multipart :P
    Well see u and have a good one!
    p.s. i know it's a little late from the day you posted, but at least it might help somebody else :D .

  • How to send multiple attachemnt with a Email

    Hello experts,
    I have problem with sending multiple attachement with a Email .
    I have used program BCS_EXAMPLE_5. it is not for multiple attachment.
    Please help me.
    Thank you.

    Hello,
    u can make use of these Function Modules.
    SO_DOCUMENT_SEND_API1
    SO_NEW_DOCUMENT_SEND_API1
    'CONVERT_OTFSPOOLJOB_2_PDF'
    the program which u gave using the method classes
    Thank u,
    santhosh
    Edited by: santhosh kumar on Dec 2, 2008 2:15 PM

  • What's the best way to send multiple photo's to another iMac

    My friend has an iMac and they are trying to send multiple photo's to my iMac.  Can anyone let me know the best method to send them please.

    AdamTurner333 wrote:
    My friend has an iMac and they are trying to send multiple photo's to my iMac.  Can anyone let me know the best method to send them please.
    Unless these are very small photos or few in number they should use a sharing service, DropBox is good but there are many others.

  • Sending multiple photos over E-mail

    I can't figure out how to send multiple photos from my iPhone 4 in an e-mail message like I can in a text message.  Does anyone know how to do this?

    Tap Photos > Camera Roll (or wherever the photos are stored) and then tap Edit, then select up to any 5 at once and tap Share > Email.
    You can only send any 5 at a time probably due to the high quality of the photos, this makes the files larger.

  • When I try to send multiple photo from my photo albums and hit share, the email box doesn't show up.  Whats going on?

    When I try to send multiple photo from my photo albums and hit share, the email box option doesn't show up.  The only options are facebook, message,   It was there last evening and I used it.  Whats going on?

    There is a limit on the number of photos that you can send in one email from the photos app, but I thought it was five. In any event, you know that you can send mutiple photos from the mail app itself and you can send more than 5.
    When you are typing an email - Tap and hold down in the body of the message area and select "Insert Photo or Video" from the black pop up options bar. Select the photos that you want to include from the photos app window that appears. Then hit return on the keyboard and start the process all over again.
    You can insert photos, type text, enter more photos .... any way that you would like to do it.

  • How do I send multiple photos from my ipad3

    How do I send multiple photos from my ipad3

    Go to a Photo Album and in upper right is select button. Tap and select the photos you want to send and then in upper right lap on the outbox icon and then select email.

  • How do I send multiple photos by email on my iphone 5s?

    I'm able to send photos by iMessage, but not by email.  How do I select multiple photos to send by email?

    ckuan is correct.
    Check to make sure your SMTP server settings are correct for your email provider.
    To get to these settings:
    Settings> Mail, Contacts, Calendars
    Then tap on the account you need to update the SMTP settings for.
    Scroll down to the OUTGOING SERVER
    Tap on the SMTP
    Now you will see a list of outgoing servers that have been configured on your iPhone.  The one that is currently set to be used with this particular email account is at the top and highlighted: Primary Server. So click on that one.
    Now you will see the settings for that PRIMARY OUTGOING SERVER:
    Make sure you have the correct settings for:
    Host Name
    User Name
    Password
    SSL
    Authentication
    Server Port
    Tap Done
    It will verify these settings.
    If it does NOT verify, then something is wrong and you need to recheck your settings and password.

  • AiO remote can't send multiple photos to camera roll

    After scanning 25 photos using AiO remote I want to send them to camera roll, but have to send each photo one at a time?
    I can press edit which allows me to select all, but this does nothing, except DELETE? Also can't email multiples or send them to Dropbox in multiples, is that weird or what?
    Any know how to contact HP about this? It does need fixing.
    This question was solved.
    View Solution.

    @StanTheManII 
    Thank you for your feedback regarding the AiO app. I will be sure to direct this to the AiO app team.
    In answer to your questions....
    The app is working as designed. There is no current option to allow to multiple seletions to be copied to the gallery. The current design is to be done one at a time.
    When emailing an attachment, you need to:
         1. make sure that your email is set up
         2. tap the share button while viewing the image, document or saved file
         3. tap email, compe and send the meail message
    This allows for only the one image, document or file to be attached to the email. Again, the app is working as designed.
    Again, I will direct your feedback regarding the additional features to the AiO app. Thank you for taking the time to post.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

Maybe you are looking for

  • ITunes 8 won't integrate correctly with photoshop elements

    Brand new Ipod Touch. Photoshop elements 4.0. Latest Touch documentation says iTunes can sync photos from this program (either all photos or photos from specific albums). In the settings of the touch when it is connected the option to sync "all" from

  • Reverse Document Error showing as incorrect status

    Have posted the document for the month of november 2009 through HR-FI integration. After that tried to reverse the same but that time period was not open and its showing as Incorrect reversal. But after opening the particular period and trying to rev

  • How can i eliminate window minimize to dock animation

    How can I: 1. eliminate all animations when window minimizes or maximizes from the dock (create blink in, blink out) 2. speed up animation of window to/from dock to instantaneous

  • Yahoo mail new emails freeze with v13.0.1

    Since yesterdays (6/20/12) Firefox update to v 13.0.1 I haven't been able to write a new email using Yahoo mail. Symptoms are: -The autocomplete feature for addresses doesn't work -It takes a long time ~ 3 minutes with the message "loading attachment

  • Stack implementation

    I need help in my assignment to implment a stack with push and pop functions. if anyone is an expert in this section pliz help me out.....