Opening an image email attachment on 6280

Trying to get to grips with my new 6280 on t-mobile uk.
I would like to be able to open email attachments that i pick up via pop3 but the only option i can see is to save attachments and then go into gallery to view... any one have any ideas. my only experience of doing this was on a 9500/9300/6680 which did display the attachments with the email opened !!

s60 and s80 phones both handle email attachments differently. the spec for s40 means that the attachment needs to be downloaded and saved prior to opening...

Similar Messages

  • Word keeps crashing when I attempt to open an .docx email attachment, how do I fix this?

    Word keeps crashing when I attempt to open an .docx email attachment, how to I stop word from crashing and be able to open the file?

    Since Word is a Microsoft product, you might have better luck of getting an answer over on the Microsoft forum.

  • How do I open a TIF image email attachment using windows photo gallery as the default instead of microsoft office picture manager?

    I have an internet fax program that sends faxes directly to my email as a TIF image attachment. When I download the attachment it lists Microsoft office picture manager as the default program to view the image. I would like to change the default program to view the image to Microsoft photo gallery. How do I change the default program to open an image attachment in firefox? Thank you

    OK I have it figured out! I was using google mail. For what ever reason the imac/pc safari using google would not display the PDF in the email even though the ipad/iphone did. I tried a different mail system through work (not google mail) and it EVERYTHING works GREAT!!!!! Wow, a lot of wasted time over something that was actually working.

  • How do I open password protected email attachment?

    Does anyone know how to open a password protected attachment in email.
    My email will not download the attachment if it is password protected

    I have the same problem.  When a password protected attachement is sent to my iPhone, there is no icon attached, only the code in the email.  However, it's normal when I view the email with my PC (Fire Fox or IE).  The same thing happens on the iPhone 3, 4 and iPad 3.  If a PDF file is not password protected, the PDF icon appears and all I have to do is click on it and it opens.  Does anyone have any ideas?  Apple Support is clueless on this one.

  • What program will open .JPG in email attachment

    Searched the forum but couldn't find an answer.  I keep getting emails with .JPG attachments but it says that there is no program on the phone to open the attachment.  Went to the Play Store and tried a couple but they didn't work.  Probably something simple but I'm not seeing it.  Help!

    I just double checked and I have received attachments from this same individual where it gives me the save or view option and I can open the picture attachments.  I'm begining to think it depends on what format or program he's using to take the picture. Even though both come  to me as JPGs, there might be a different format.  I'm gonna contact him and see what he's using.  Thanks for the resonses and if you think of something, please post.

  • Import image email attachment into app

    I am trying to import email attachments into my iphone app. I am placing code in my info.plist with uti etc. I have successfully imported audio attachments (caf, aifc, aif, m4a, and mp3). But I am not being successful at all with image files. I want to import jpg, jp2, pic, tif, and png files.
    I have written this code in my info.plist for the audio files.
    Code: 
    <dict> <key>LSItemContentTypes</key> <array> <string>com.apple.coreaudio-format</string> </array> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>CFBundleTypeName</key> <string>.caf</string> <key>LSHandlerRank</key> <string>Alternate</string> </dict>
    as I said this works fine for all the audio types I want.
    But when I enter this code
    Code: 
    <dict> <key>LSItemContentTypes</key> <array> <string>public.png</string> </array> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>CFBundleTypeName</key> <string>.png</string> <key>LSHandlerRank</key> <string>Alternate</string> </dict> 
    for the images, nothing happens. The app icon doesn't show up in the modal view to tap and "open in" my app.
    can anyone see any thing I am doing wrong here?
    I have looked at what there is about this and nothing seems to suggest that you need to do any thing different for images than for audio files.
    I appreciate any and all help.

    I put the above code into my apps info.plist although I did change <key>UTExportedTypeDeclarations</key>  to <key>UTImportTypeDeclarations</key>
    and then in the app delegate I am putting
    -(BOOL)application:(UIApplication *)application
               openURL:(NSURL *)url
    sourceApplication:(NSString *)sourceApplication
            annotation:(id)annotation {
        if (url != nil && [url isFileURL]) {
            // do something with the URL
        return YES;
    and then this;
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
        NSURL *url = (NSURL *)[launchOptions valueForKey:UIApplicationLaunchOptionsURLKey];
        if (url != nil && [url isFileURL]) {
           //it has been suggested that I put [self.viewcontroller handleOpenURL:url];
    or self.window.rootViewController hanleOpenURL:url];
    but neither work so I left them out. 
    return YES;
    I have also use the code:
    <key>CFBundleDocumentTypes</key>
              <array>
                        <dict>
                                  <key>CFBundleTypeName</key>
                                  <string>.jpg</string>
                                  <key>CFBundleTypeRole</key>
                                  <string>Viewer</string>
                                  <key>LSHandlerRank</key>
                                  <string>Alternate</string>
                                  <key>LSItemContentTypes</key>
                                  <array>
                                            <string>public.jpeg</string>
                                  </array>
                        </dict>
                        <dict>
                                  <key>CFBundleTypeName</key>
                                  <string>.au</string>
                                  <key>CFBundleTypeRole</key>
                                  <string>Viewer</string>
                                  <key>LSHandlerRank</key>
                                  <string>Alternate</string>
                                  <key>LSItemContentTypes</key>
                                  <array>
                                            <string>public.ulaw-audio</string>
                                  </array>
                        </dict>
                        <dict>
                                  <key>CFBundleTypeName</key>
                                  <string>.aiff</string>
                                  <key>CFBundleTypeRole</key>
                                  <string>Viewer</string>
                                  <key>LSHandlerRank</key>
                                  <string>Alternate</string>
                                  <key>LSItemContentTypes</key>
                                  <array>
                                            <string>public.aiff-audio</string>
                                  </array>
                        </dict>
                        <dict>
                                  <key>CFBundleTypeName</key>
                                  <string>.aif</string>
                                  <key>CFBundleTypeRole</key>
                                  <string>Viewer</string>
                                  <key>LSHandlerRank</key>
                                  <string>Alternate</string>
                                  <key>LSItemContentTypes</key>
                                  <array>
                                            <string>public.aifc-audio</string>
                                  </array>
                        </dict>
                        <dict>
                                  <key>CFBundleTypeName</key>
                                  <string>.caf</string>
                                  <key>CFBundleTypeRole</key>
                                  <string>Viewer</string>
                                  <key>LSHandlerRank</key>
                                  <string>Alternate</string>
                                  <key>LSItemContentTypes</key>
                                  <array>
                                            <string>com.apple.coreaudio-format</string>
                                  </array>
                        </dict>
                        <dict>
                                  <key>CFBundleTypeName</key>
                                  <string>.m4a</string>
                                  <key>CFBundleTypeRole</key>
                                  <string>Viewer</string>
                                  <key>LSHandlerRank</key>
                                  <string>Alternate</string>
                                  <key>LSItemContentTypes</key>
                                  <array>
                                            <string>public.mpeg-4-audio</string>
                                  </array>
                        </dict>
                        <dict>
                                  <key>CFBundleTypeName</key>
                                  <string>.mp3</string>
                                  <key>CFBundleTypeRole</key>
                                  <string>Viewer</string>
                                  <key>LSHandlerRank</key>
                                  <string>Alternate</string>
                                  <key>LSItemContentTypes</key>
                                  <array>
                                            <string>public.mp3</string>
                                  </array>
                        </dict>
              </array>
    The audio files work great but I cannot get the image files to work.  I have tried .png, .tif, .pct, and .jp2 int the latter code.  Nothing seems to work. 
    I don't know what I am doing wrong and I am finding it very frustrating without any help.
    Thank you for any assistance you can render.

  • HT5663 why I can not open an icloud email attachment with iworks application in icloud directly?

    Hi,
    I like this iwork solution in icloud, but the integrity might be developed more. If I got an email to my icloud inbox, I can not open it with iworks application but it will be downloaded instead. It would be very useful to be able to open an attachment onsite, using one of the iworks app.
    thanks
    janos

    Let Apple know...
    http://www.apple.com/feedback/

  • How do I stop Firefox from opening a blank page before my selected PDF viewer opens a pdf email attachment?

    When I receive an Outlook PDF attachment and open it, Firefox starts and a blank page opens. After Firefox has opened and the blank page opens, the PDF viewer I am using opens the PDF. I have the options settings set to use Filecenter.exe as the PDF viewer. I have changed this to use adobe and the blank page still opens. I have set Firefox to be the default viewer but Firefox will not open PDFs created by certain CAD programs. I would like for this blank page to stop opening in Firefox. Does anyone have a solution to correct this problem?

    hello grichardson, does it work when you go into the ''acrobat reader > edit > preferences > general ''& click on the default application option at the bottom? in there reselect adobe's application and confirm this selection...

  • Yahoo email attachment downloads not showing anywhere

    When I open a yahoo email attachment, asks to download, checked by norton, downloads, but is not showing up anywhere

    Hi Lisa
    Strange this would occur on both browsers. This may be another Yahoo problem. Last night, images did not appear in my Yahoo Mail. This morning they are back. Do you still see the problem? If you do...
    Are you seeing the image problem on other web site pages, or is this specific to Yahoo? If occurring on various web sites in Safari usually indicates the "display images when page opens" box is not checked in the Safari Preferences>Appearance panel. The counterpart setting in Firefox would be Content>Load Images Automatically.
    If not, are you using any 3rd party Internet blocking software?

  • Email attachment in PDF problem with Images

    Hi All,
    Can any one tell me how to solve the problem with Email attachment in PDF. If i remove the logo of the client in the Smartform i am getting the Email attachment fine but when i put back the image in the smartform the PDF is giving error and not opening the attachment.
    Regards,
    Lakshmikanth.

    Hi All,
    Can any one tell me how to solve the problem with Email attachment in PDF. If i remove the logo of the client in the Smartform i am getting the Email attachment fine but when i put back the image in the smartform the PDF is giving error and not opening the attachment.
    Regards,
    Lakshmikanth.

  • Problem in opening an image file sent as attachment in mail

    Hi Friends,
    I have a requirement of sending a image file (.jpg) through email attachment.
    I am getting the attachment using the function module 'SO_NEW_DOCUMENT_ATT_SEND_API1'.
    But i am unable to open the file in the attachment. It is givin a message 'CAN'T DETERMINE TYPE'.
    Can you please provide me a solution .
    Regards,
    pooja

    Read the JPG file as Binary (TYPE BIN) in your read? and write it to the OBJBIN table?
    done in the OPEN
      REFRESH w_objbin.
      OPEN DATASET attach FOR INPUT IN BINARY MODE MESSAGE t_mesg.
      IF sy-subrc NE 0.
        WRITE:/ 'Attachment Dataset Open RC ',sy-subrc.
        WRITE:/ 'Message ',t_mesg.
        EXIT.
      ENDIF.
      DO.
        READ DATASET attach INTO wk_rec.
        IF sy-subrc NE 0.
          IF sy-subrc NE 4.
            WRITE:/ 'Attach Dataset Read RC ',sy-subrc.
            WRITE:/ 'Message ',t_mesg.
          ENDIF.
          EXIT.
        ENDIF.
        w_objbin-line = wk_rec.
        APPEND w_objbin.
      ENDDO.
      DESCRIBE TABLE w_objbin LINES w_tab_lines.
      LOOP AT w_objbin INTO wk_rec.
        APPEND wk_rec TO i_objbin.
      ENDLOOP.
    Edited by: Paul Chapman on Jun 5, 2008 10:46 AM

  • I can't open a jpg file directly from an Outlook email attachment into Photoshop CC.

    When I try to open a jpg file directly from an Outlook email attachment into Photoshop CC I get this error message " Photyoshop CC.exe - Entry Point not found" with this string:

    I don't think I have ever been able to open an image directly from Outlook into Photoshop.  What you can do, is drag from outlook to desktop, and then from desktop into Photoshop.  Or, if seeing the windows at the same time is a problem, drag onto desktop, then minimise everything, and drag onto the Photoshop icon (if you have a Photoshop shortcut on your desktop).

  • Tiger 10.4.11-Can't open email attachment

    Received an email attachment jpg (777 KB) which was clearly visible in the message window as well as when I opened the attachment itself -so no problem. However I needed to have some alterations made to this file (business card)
    I duly received two consecutive  attachments, which were the alterations to my business card (the 777 KB file.
    These two files were now 1.3 MB and 1.4 MB in size, they appeared in the message window as large black images (nothing visible) which I was unable to open.
    As I did not know the problem, suggested to the sender to perhaps reduce the file size, as I was able to open the original file. The sender re-sent the re-sized file now reduced to 744 KB, similar in size to the first one, again appears as a large black image.
    Now we are at a stalemate, the sender says he has four computers and the images appear fine on all four, so is now suggesting the problem is with me or my computer. I have had no prior problems opening jpg files, so suggested he send me a pdf to enable me to check the alterations, I'm still waiting for that pdf!
    Can someone please help! Is there something i can do? or is it up to the sender?

    Care to forward one to me to see what's up? If so, you're the only one that can see your eMail in your profile.
    Or you can cantact me (PM or Email), by joining my site...
    x704.net/bbs
    Or an older version of GraphicConverter to open most any picture filet...
    http://www.lemkesoft.com/

  • I have files that have been on my computer for over a year and all of a sudden they wont open and an error message comes up saying they were improperly downloaded or came in an email attach which is not the case

    I have files that have been on my computer for over a year and I have used them several times and all of a sudden they wont open.  I received an error message saying they are improperly downloaded or came as an email attachement which is not the case.  Please advise

    They seem to be word files - they will open if I choose "open with" microsoft word, but if I double click they don't open they are appearing as PDF on my screen.  I even opened one and then tried to "save as" making sure I chose .doc and they still appear as PDF
    I just created a new document response.doc in word and when I saved to my desktop it appears as a PDF file and I absolutely did not create a PDF or save as PDF it was a simple word
    doc.
    The message says "Adobe reader could not open response.doc because it is either not a supported file type or because the file has been damaged (for example attached in an email and not properly decoded)
    The reader version is I believe the most current, I always update when prompted.  OS is Windows 8

  • HT5275 When I download an attachment, it doesn't open in a new window.  It goes to my finder, but I must click on an email attachment at least 3 times in order to find it there.  Is there a way to change the preferences to simply open attachment in a new

    When I download an attachment, it doesn't open in a new window.  It goes to my finder, but I must click on an email attachment at least 3 times in order to find it there.  Is there a way to change the preferences to simply open attachment in a new window?

    http://www.apple.com/feedback/kaywerty wrote:
    A rather long winded way of asking if anybody knows if it's possible to have multi-windows open
    It's not possible.
    Suggestions here -> Apple Product feedback

Maybe you are looking for