Attachment from an email

Hi All,
I just want to ask how to view an attachment from an email using ipod touch? Thanks in advance.
Regards,
TOpher

Fromt he Users Guide:
Viewing Attachments
iPod touch displays image attachments in many commonly used formats (JPEG, GIF,
and TIFF) inline with the text in email messages. iPod touch can play many types of
audio attachments, such as MP3, AAC, WAV, and AIFF. You can download and view files
(such as PDF, webpage, text, Pages, Keynote, Numbers, and Microsoft Word, Excel, and
PowerPoint documents) that are attached to messages you receive.
View an attached file:  Tap the attachment to open it in Quick Look.
You may need to download the attachment first by tapping  (if it appears at the end
of the message in a dotted box with the document name).
Tap attachment
to download
You can view attachments in portrait or landscape orientation.
If the format of an attached file isn’t supported by iPod touch, you can see the name of
the file but you can’t open it. iPod touch supports the following document types:
.doc Microsoft Word
.docx Microsoft Word (XML)
.htm webpage
.html webpage
.key Keynote
.numbers Numbers
.pages Pages
.pdf Preview, Adobe Acrobat
.ppt Microsoft PowerPoint
.pptx Microsoft PowerPoint (XML)
.rtf Rich Text Format
.txt text
.vcf contact information
.xls Microsoft Excel
.xlsx Microsoft Excel (XML)
Open an attached file with another app:  Touch and hold the attachment, then
choose an app. If no apps are available, you can choose to open the attachment in
Quick Look.
Save an attached photo to your Saved Photos album:  Tap the photo, then tap Save
Image. If the photo hasn’t been downloaded yet, tap the download notice first.
Save an attached video to your Saved Photos album:  Touch and hold the
attachment, then tap Save Video. If the video hasn’t been downloaded yet, tap the
download notice first.

Similar Messages

  • I have an iMac 10.8.2.  When trying to download a photo attachment from an email I received the following : "You can't open application IPhoto because the classic environment is no longer supported."  This occurred on 10/25/12 at about 11PM CST.  The iPho

    I have an iMac 10.8.2.  When trying to download a photo attachment from an email I received the following : "You can't open application IPhoto because the classic environment is no longer supported."  This occurred on 10/25/12 at about 11PM CST.  The iPhoto icon in both the dock and the application folder is grayed out with the no or do not enter symbol.  How can I resolve this so I can access my photos?

    I have two iPhoto icons in applications. One is grayed out and has the no symbol, the date of last modification is Oct 25, 2012 11:07pm.  The size is 110 KB and kind shows Applic…lassie). When I click on with CMD i it shows:
    kind: Application (Classic)
    size: 109,677 bytes (111 KB on disk)
    Where: / Applications
    Created:  Thursday, October 25, 2012 11:07 PM
    Modified: Thursday, October 25, 2012 11:07 PM
    Version:  --
    More info:  --
    Name and extension:  iPhoto.app
    Hide extension is grayed out and checked
    Preview shows a photo I had attempted to save to iPhoto
    The second iPhoto icon is also grayed out, but the symbol is an envelope, the date of last modification is Oct 12, 2012 12:09PM.  The size is 548 KB and kind is shown as an email message.  When I clicked on it with CMD i it shows:
    Kind: Email Message
    Size: 547,665 bytes (549 KB on disk)
    Where:  /Applications
    Created: Friday, October 12, 2012 12:09 PM
    Modified:  Friday, October 12, 2012 12:09 PM
    Version: not listed
    Name & Extension:  iPhoto.eml
    Hide Extension: checked
    Open with:  Mail
    Preview shows a photo I had attempted to save to iPhoto

  • TS3276 How do I open an attachment from my email with macbook pro on aol?

    How do I open an attachment from my email with macbook pro on aol? It keeps flipping back?

    Wirth an iOS device you have to first go to the app that has the item you want to attach. When in that app you then select the email option for sharing.  You can't start from the Mail app.

  • Recover  attachment from an email

    Hello
    I have recently started java mail, and I try to retrieve attachment from an email in a folder.
    But he recuperates nothing like he did not see any attachment.
    How can I solve this please?
    Thank you for your help
    here is my code
    imapFolder.open(Folder.READ_ONLY);
            Message[] messages = imapFolder.getMessages();
            List<File> attachments = new ArrayList<File>();
            for (Message message : messages) {
                Multipart multipart = (Multipart) message.getContent();
                // System.out.println(multipart.getCount());
                for (int i = 0; i < multipart.getCount(); i++) {
                    BodyPart bodyPart = multipart.getBodyPart(i);
                    String disposition = bodyPart.getDisposition();
                    System.out.println("disposition:"+disposition);
                    //if it's attachment save it
                    if ((disposition != null) && ((disposition.equalsIgnoreCase(bodyPart.ATTACHMENT) )))
                        System.out.println("FileName:"+bodyPart.getFileName());
                        System.out.println("Content:"+bodyPart.getContent());
                       System.out.println("Attachment type::" + bodyPart.getContentType());
                        System.out.println("Content-Type::\""+bodyPart.getContentType()+"END");
                        else
                             System.out.println(" c est vide");
                    InputStream is = bodyPart.getInputStream();
                    File f = new File("C:/Documents and Settings/EddayanH/Desktop/Amr" + bodyPart.getFileName());
                    FileOutputStream fos = new FileOutputStream(f);
                    byte[] buf = new byte[4096];
                    int bytesRead;
                    while((bytesRead = is.read(buf))!=-1) {
                        fos.write(buf, 0, bytesRead);
                    fos.close();
                    attachments.add(f);
                    //System.out.println(attachments);
                }{code}
    and the result of debugging is:
    {code}disposition:ATTACHMENT
    FileName:null // always null
    Content:com.sun.mail.util.BASE64DecoderStream@1ea5671// don t understand this ?
    Attachment type::AUDIO/AMR
    Content-Type::"AUDIO/AMREND
    disposition:ATTACHMENT
    FileName:null
    Content:com.sun.mail.util.BASE64DecoderStream@1d15445
    Attachment type::AUDIO/AMR
    Content-Type::"AUDIO/AMREND
    disposition:ATTACHMENT
    FileName:null
    Content:com.sun.mail.util.BASE64DecoderStream@1fc2fb
    Attachment type::AUDIO/AMR
    Content-Type::"AUDIO/AMRENDEdited by: bibou92 on Jul 9, 2010 5:57 AM

    ok
    thx a lot for your help bshannon but i am stuck again
    i can t retrieve all mail attachements , but only one
    I have follow msghow and i see that it is a probleme with MimeType but i can t handle this problem
    what do you mean with recursive algorithme
    th x a lot for your help
        Message[] messages = monFolder.getMessages();
            for (int i=0; i < messages.length; i++)
                 Object content = messages.getContent();
    Multipart multipart = (Multipart) content;
    int count = multipart.getCount();
    String chaine=messages[i].getFrom()[0].toString();
    String chaine2=chaine.substring(6,18);
              listeMessages.add(chaine2);
              Date dateModif=new Date(messages[i].getReceivedDate().toLocaleString());
                   DateFormat conversion= new SimpleDateFormat("dd/MM/yyyy " + "HH:mm:ss");
              listeDates.add(conversion.format(dateModif));
         for (int j = 0; i < count; i++)
         //System.out.println(" " +multipart.getCount());
    BodyPart bodyPart = multipart.getBodyPart(j);
    //sauvegardeFichier(bodyPart);
    String disposition = bodyPart.getDisposition();
    if ((disposition != null) &&(disposition.equalsIgnoreCase(Part.ATTACHMENT) ) || disposition.equalsIgnoreCase(Part.INLINE))
         MimeBodyPart mbp = (MimeBodyPart)bodyPart;
    if (mbp.isMimeType("audio/*")) {
    System.out.println("Mime type is audio");
    InputStream is = bodyPart.getInputStream();
    File f = new File("C:/Documents and Settings/EddayanH/Desktop/test/"+i );
    FileOutputStream fos = new FileOutputStream(f);
    byte[] buf = new byte[4096];
    int bytesRead;
    while((bytesRead = is.read(buf))!=-1) {
    fos.write(buf, 0, bytesRead);
    // fos.flush();
    fos.close();
    is.close();
    /*if(content instanceof java.lang.String){
         bodyPart=(BodyPart)content;
    } else if(content instanceof Multipart){
    multipart = (Multipart)content;}*/
         //sauvegardeFichier(bodyPart);
    return listeMessages;
    Edited by: bibou92 on Jul 20, 2010 8:41 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to move an attachment from 1 email to another

    moving an email attachment to a different email

    Please update to Firefox 18.0.1. [[Update Firefox to the latest version]]
    To move attachments you'll have to save it from one email to your computer, then attach to the other email.

  • How do I open a PDF attachment from an email so I can edit it for reply on an iPad?

    I need to open a PDF attachment on an email, edit it and resend it back to the originator on an iPad. Help?

    A PDF is a graphics document, so you can't edit it without access to an expensive program like Adobe Acrobat.

  • How to extract a attachment from an email

    Hello SDN,
    we receive email via the configuration of TAC SO28 and trigger a workflow. What would be a good/possible way to extract potential attachments (such as pdf's or tif's) from the email within SAP workflow?
    Are there any methods or FM's, which could extract them from the binary?
    I appreciate any advise!
    Cheers,
    Torsten

    Hi Torsten,
    Does it automatically convert to a SAP Office document? If so you could use the SAP Office apis... search for function modules names SOAPI1.
    Alternatively you may be able to use one of the OTF routines - again search on OTF for suitable function modules.
    Regards,
    Jocelyn

  • I recently upgraded to Maverick OS from Apple. Now everytime I try to download an attachment from my email, I am not allowed to do so. Help Please!

    Running Maverick OSX from apple. I can't download any attachments from my email. I get the following message:
    /rMlzoyru.tiff.part could not be saved, because you cannot change the contents of that folder.
    Change the folder properties and try again, or try saving in a different location.
    Not sure how to change folder properties.

    If you try to download the file to a different folder, does it work?<br>
    Do you have any firewall/anti-virus program installed on your computer that could be preventing Firefox from changing files/folders on your computer?
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    Please report back soon.

  • I need a document open password to open a attachment from a email

    i need a document open password to open a attachment from a email

    Ask the author of the file for it...

  • How do I launch an attachment from my email?

    I am trying to open a pdf attachment. It used to go to my download file. Now it goes into email heaven. Is there a setting I need to fix?

    Wirth an iOS device you have to first go to the app that has the item you want to attach. When in that app you then select the email option for sharing.  You can't start from the Mail app.

  • Can I download an attachment from an email in the iPhone 5s outbox?

    The file, a voice memo, was at first too large to send and thus "a copy" was placed in the outbox. In trying to trim the file, I deleted it. I reason that because emails in the outbox take up space, the original file must still exist there; thus, is it possible to recover the file from the outbox? When I open the email, however, the icon showing the attachment is treated as normal text.

    That's not a bug, that is the way it is designed.
    Other smartphones give you the option of downloading the message from your server, or merely viewing it. Thats not an option you have on the iPhone.
    As to the Keynote -- that wasn't a typical Jobs Keynote address...it was a preview of a pre-production unit. Throughout the 6 months between announcement and release, Apple has been quite open about stating that features seen at the Keynote were merely demo and would not reflect the final product. That is exactly why Jobs never announces anything in advance at Apple. The only reason the iPhone was announced was because it needed FCC approval, and it would have been all over the airwaves and media anyway once the approval process started. Now that the phone has FCC approval, it will be back to the same old Apple stealth system -- no prior announcements, and no confusion between what is and what is not.

  • After copying my emails to a Gmail account I have lost the attachment from the emails

    I have two accounts configured in Thunderbird. One of them isn't for a Gmail account and the other one is for a Gmail account. I've just made a backup of my emails from the first to the Gmail account. I have followed the guide help step by step. When the process has finished I had all my messeges in the Gmail account and I could read any of them, but the attachments were lost. So, I have made the copy again putting the emails in their original folder. After that, I can read the emails and I have access to the attachments.
    I've repeat this process two or three times and it happens in the same way. So, how can I make this copy (backup) without losing the attachments?
    Thanks.

    This forum is in Spanish, try using the Mozilla Help forum in your language: https://support.mozilla.org/en-US/questions/

  • Im trying to download an attachment from my email account, the name of the file is renamed to "securedownload".

    firefox is changing the name of my attachment file to "securedownload" when im trying to download it. I disabled all add-ons but no change. With internet explorer i can download the file as it is. I have also scan my laptop for virus and it is clean
    firefox 8 os: windows vista 64 bit

    Upgrade your browser to Firefox 8 and try
    * getfirefox.com

  • When I download an attachment from my email, it's in my firefox downloads but I can't open it . \\\help\1

    That's it - see the problem above

    In the Downloads window, right-click that downloaded file and select '''Open Containing Folder'''. Then open that file with the appropriate program.

  • Printing an Acrobat attachment from an email freezes PC

    Why? I have stripped and updated as recommended by my supplier. No change!

    Tks. Fixed. Problem was a deffective mouse!
    Regards

Maybe you are looking for