Saving outlook mail attachment

I was able to save pictures before in Outlook mail. Now somewhere along the line i can not print the content or save pictures. I have looked at different add-ons but none seem to say that they are for this problem. What do I need to do? or download to get my mail working again?

Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
*Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
*https://support.mozilla.org/kb/Safe+Mode
*https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Similar Messages

  • Attaching pictures to outlook mail

    I'm having problems attaching photos to Outlook mail messages. My previous PC used XP and it was simple to click on Attach in the Outlook mail message and choose a photo(s) from My Pictures in My Documents. (Alternatively I could right click on any photo and select attach to email) Now my HP Touchscreen uses Vista and photos are kept in Windows Photo Gallery but don't seem to be accessible via My Documents (the only way I have found of locating and storing photos is via the Windows icon which takes me to the photo gallery). I can't work out how to locate photos to attach them if I click on Attach in an Outlook mail message. I have tried going in to Windows Photo gallery, selecting a photo and then clicking E-mail then attach as suggested in help and support, but although the  screens appear nothing happens and no mail message appears. I'd really appreciate it if anyone can help!
    Carolems
    This question was solved.
    View Solution.

    Vista does not have outlook - it uses Windows Mail. Have you set up Windows Mail?
    If not, you can use this support document to go through the whole procedure.
    However, I recommend not using Windows Mail and switching to Web-based email service: such as Windows Live mail, Yahoo Mail, Google's GMail, MSN Hotmail, and others. These services are failry easy to set up and they are easy to access from anywhere in the world and from any PC (you can easily check mail from any PC that has Internet).. all you need to know is your logon and password.
    I use Yahoo and GMail...not sure about the others. With either of these, when you want to attach a picture you click an attach button and pop up window lets you browse to the image file on your hard drive (if you know where it is). They even scan the files for viruses for you automatically.
    As far as where your photos are being saved, Vista uses an entirely new browsing interface that can be very confusing if you are used to XP. Also... photo gallery is the Windows software for viewing photos - it's not the same as the old "My Pictures" folder. The equivilent to My Pictures is Pictures... Click the Blue Start button in the lower left and then click Pictures in the upper right portion of the start menu. If you can't find what you are looking for , click Public in the left side of the Pictures folder and you can find more Public Pictures folders.
    ... an HP employee expressing his own opinion.
    Please post rather than send me a Message. It's good for the community and I might not be able to get back quickly. - Thank you.

  • HT1692 i have trouble in saving invitation from an outlook mail to my i phone calendar

    i have trouble in saving invitation from an outlook mail to my i phone calendar
    the invitation is received as follows: mime.attachement.ics

    Are you using iCloud to sync calendars on the iPhone or your computer?
    If you are it should blank out the option to sync calendars on iTunes but on the rare occasion it doesn't.

  • Mail attachment saving problem

    Hi,
    When I tried to save a Mail attachment today I got the following warning:
    Mail was unable to save the attachment “File.numbers” to disk. Please verify your downloads folder exists and is writable.
    The warning must be wrong because other attachments, even of the same kind, can be saved without problems. I observed that only such files are effected which contain subdirectories like numbers, keynote, etc. and my suspicion is, that the saving problems may come from wrong file reading/writing rights within these subdirectories, that the sender of the Mail may have imposed to prevent unwanted changes to his/her file. May this be so? Otherwise, what else?
    (MacOs X 10.5.6, Mail.app 3.5 and, in this particular case, Numbers08)
    Thanks for for help in advace!
    Joe.

    Hi Kappy,
    Nothing at all. No error message but no copying either, and no change in the curser appearance when dragging to the Desktop.
    When I go to Mail --> Message --> Forward as Attachment, the attachment in the composer window can be saved like a normal file and has an appropriate size, eg. the desired original file seems to be contained in there. However, I have no Idea how to extract the original .numbers file from that.
    Strange, isn't it?
    Thanks,
    Joe.

  • Is there a function to open the outlook mail and to attach certain..

    Hello,
    Is there a function to open the outlook mail and to attach certain selected files?

    here is a code snippet from one of our programs
      data: out type ole2_object,
            outmail type ole2_object,
            att type ole2_object,
            atts type ole2_object.
          create object out 'Outlook.Application'.
          call method of out 'CREATEITEM' = outmail
            exporting
              #1 = 0.
          set property of outmail 'SUBJECT' = 'Smartform Output from SAP'.
          call method of outmail 'ATTACHMENTS' = atts.
          call method of atts 'ADD'
            exporting
              #1 = p_file.
          call method of outmail 'DISPLAY'.
    in our case, we save the data to a local file with the path p_file.
    so, we create the attachment on a local drive, at path p_file
    we open outlook
    we create a mail item
    we set the subject
    we add the attachment
    and we call disply, to pop the email up for any changes the user wants to make.
    in other programs we also use
      set property of outmail 'TO' = alvline-prc_email.
    to set the TO address of the email
    hope this helps

  • Sending a document as an mail attachment with approve and reject button

    Hi all,
         i have an infopath form where a user fills the form and on submit the form is saving as an document in the document library,
    now my question is, how can i get this document as an mail attachment with approve and reject option.

    Hello,
    You need to hide them on form load for user. Add one more hidden control in form and keep control value blank initially. Now add rule on button submit to set the control value to some other so you can hide/show the button.
    Now add rule on approve and reject buttons that, if field1 is blank then hide this control.
    http://office.microsoft.com/en-in/infopath-help/add-formatting-rules-HA101783371.aspx
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Mail attachment in java

    hi
    Here is the code i am using for mail attachment without attachment it is working fine
    package com.nihon.login;
    import java.util.Properties;
    import java.util.ResourceBundle;
    import javax.activation.DataHandler;
    import javax.activation.DataSource;
    import javax.activation.FileDataSource;
    import javax.mail.BodyPart;
    import javax.mail.Message;
    import javax.mail.Multipart;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.util.ByteArrayDataSource;
    public class Mail {
    * @param args
    private static String host = null;
    private static String from = null;
    private static String to = null;
    private static String subject = null;
    private static String content = null;
    private static String filename = "D:\\Users
    entry.pdf";
    public static void send(String fromAddress,String toAddress,String subject, String mailContent) throws Exception{
    send(fromAddress,toAddress,null,subject,mailContent);
    public static void send(String fromAddress,String toAddress, String ccAddress,String subject, String mailContent) throws Exception {
    ResourceBundle rb = ResourceBundle.getBundle("com.nihon.login.Application");
    MailInfo mail = new MailInfo();
    mail.setMailServer(rb.getString("nihon.mail.server"));
    if(fromAddress!=null){
    mail.setFromAddress(fromAddress);
    }else{
    mail.setFromAddress(rb.getString("nihon.mail.fromID"));
    host = mail.getMailServer();
    // Get system properties
    Properties props = System.getProperties();
    // Setup mail server
    props.put("mail.smtp.host", host);
    // Get session
    Session session = Session.getDefaultInstance(props, null);
    // Define message
    MimeMessage message = new MimeMessage(session);
    // Set the from address
    message.setFrom(new InternetAddress(mail.getFromAddress()));
    // Set the to address
    if(toAddress!=null)
    message.addRecipient(Message.RecipientType.TO, new InternetAddress(toAddress));
    if(ccAddress!=null){
    message.addRecipient(Message.RecipientType.CC, new InternetAddress(ccAddress));
    // Set the subject
    message.setSubject(subject);
    // Set the content
    message.setText(mailContent);
    For attachment
    BodyPart messageBodyPart = new MimeBodyPart();
    Multipart multipart = new MimeMultipart();
    multipart.addBodyPart(messageBodyPart);
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(filename);
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName(filename);
    multipart.addBodyPart(messageBodyPart);
    message.setContent(multipart);
    // Send message
    Transport.send(message);
    // Method to instantiate once
    public static Mail getInstance() {
    if (instance == null) {
    instance = new Mail();
    return new Mail();
    // Construtctor
    protected Mail() {
    private static Mail instance = null;
    But now i add some code for attachment after that i got the exception in below
    javax.mail.MessagingException: IOException while sending message;
    nested exception is:
    java.io.IOException: No content
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:625)
    at javax.mail.Transport.send0(Transport.java:169)
    at javax.mail.Transport.send(Transport.java:98)
    at com.nihon.login.Mail.send(Mail.java:104)
    at com.nihon.login.Mail.send(Mail.java:47)
    at com.nihon.login.Mailsender.sendMail(Mailsender.java:47)
    at com.nihon.login.Mailsender.attributeAdded(Mailsender.java:19)
    at org.apache.catalina.session.StandardSession.setAttribute(StandardSession.java:1334)
    at org.apache.catalina.session.StandardSession.setAttribute(StandardSession.java:1243)
    at org.apache.catalina.session.StandardSessionFacade.setAttribute(StandardSessionFacade.java:130)
    at com.nihon.track.OnsitePlacement.doProcessRequest(OnsitePlacement.java:347)
    at com.nihon.track.OnsitePlacement.doPost(OnsitePlacement.java:420)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
    at java.lang.Thread.run(Unknown Source)
    How can i solve this problem.
    Thanks in advance.......

    If the message is in an Exchange server, you can access it with JavaMail
    and extract the attachment. See the JavaMail FAQ and the many sample
    programs that come with JavaMail.
    If the message is in Outlook's message store on your desktop machine,
    it's harder. You need a JavaMail "message store provider" that understands
    the message store format used by Outlook on your local disk. JavaMail
    doesn't come with such a provider, but you might find one in the Third
    Party Products list on the JavaMail web page.

  • Mail attachement content trnsfer encoding 8bit , 7bit

    Good morning to everybody.
    I have a problem reading mail attachement.
    When the attachement is 8bit encoded the exadecimal char "3D" is write in a file as "0D". This is wrong
    When the attachement is 7bit encoded the exadecimal char "3D" is write in a file as "3D" . Thi is right
    Is there anyone who knows why of this beaviour?
    Many thanks

    I'm using the msgshow.java that is the example included in the java mail library.
    Attachement downloaded with JavaMail (the bad one):
    �� 3D ==> 0D (CR)
    2007-05-15;18.11.26;978;000469,00;380;Italy
    ;LUISA SPAGNOLI NAPOLI IT;34009575;8036527 ;5651;00;
    Attachement downloaded with outlook (the good one):
    �� 3D not translated
    2007-05-15;18.11.26;978;000469,00;380;Italy =
    ;LUISA SPAGNOLI NAPOLI IT;34009575;8036527 ;5651;00;
    Here the properties of the mail message:
    Microsoft Mail Internet Headers Version 2.0
    Received: from EXSMTP-IN2.sede.corp.sanpaoloimi.com ([10.244.7.21]) by EVS01.sede.corp.sanpaoloimi.com with Microsoft SMTPSVC(6.0.3790.2499);
         Mon, 28 May 2007 08:09:14 +0200
    Received: from secgw-b-e02.intesabci.it ([172.19.0.27]) by EXSMTP-IN2.sede.corp.sanpaoloimi.com with Microsoft SMTPSVC(6.0.3790.2499);
         Mon, 28 May 2007 08:09:13 +0200
    Received: MHUBINT
    Received: FW
    Received: from mail1.ssb.it ([192.106.129.13])
         by mailbox.intesabci.it with SMTP id l4S696n5006757
         for <[email protected]>; Mon, 28 May 2007 08:09:09 +0200
    Received: (qmail 11377 invoked by uid 509); 28 May 2007 06:02:04 -0000
    Received: from 127.0.0.1 by Imhotep (envelope-from <[email protected]>, uid 501) with qmail-scanner-2.01
    (spamassassin: 3.1.3.
    Clear:RC:1(127.0.0.1):.
    Processed in 0.078893 secs); 28 May 2007 06:02:04 -0000
         Mon, 28 May 2007 08:02:03 +0200 (CEST)
         (Postfix) with SMTP id 6798F34257;Mon, 28 May 2007 08:02:03 +0200 (CEST)
    to: <[email protected]>,
    from: <[email protected]>
    subject: 28 May 2007 08:00 PS12 FROD-ATM1
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="P=_NextPart_000_01BD3BAF.A762FD80"
    Date: Mon, 28 May 07 08:00:27 B
    Message-Id: <[email protected]>
    Return-Path: [email protected]
    X-OriginalArrivalTime: 28 May 2007 06:09:13.0674 (UTC) FILETIME=[B707A2A0:01C7A0EE]
    --P=_NextPart_000_01BD3BAF.A762FD80
    CONTENT-TYPE: TEXT/PLAIN; CHARSET="US-ASCII"
    Content-Transfer-Encoding: 8bit
    --P=_NextPart_000_01BD3BAF.A762FD80
    Content-Type: text/plain; charset=us-ascii; name="SPIMI.TXT"
    Content-Disposition: attachment
    Content-Transfer-Encoding: quoted-printable
    X-MIME-Autoconverted: from 8bit to quoted-printable by mailbox.intesabci.it id l4S696n5006757
    --P=_NextPart_000_01BD3BAF.A762FD80
    CONTENT-TYPE: TEXT/PLAIN; CHARSET="US-ASCII"
    Content-Transfer-Encoding: 8bit �������� I think the problem is here
    P=_NextPart_000_01BD3BAF.A762FD80

  • Reading mail attachement

    Hi all ,
    i want to read mail from pop3 server in to abap, for this i m using a php FM by which i am able to read text of mail but i am not reading attachement of mail , plz help me for that reading attachement.
    /people/anton.wenzelhuemer/blog/2006/05/27/abap-pop3-email-client-using-an-rfc-enabled-php-client-proxy
    I m using this blog for this purpos.
    Thanks
    Gaurav

    hi ,
    this method in the blog will configure SAP MAIL INBOX for mail read but i want to read mail attachement by PHP function  which i will saving in a data table in ABAP say name zmailtable.Actually i already tried this method of configuring mail box but it is creating some problem and not recieving mail in sap mail box. give me the solution related to PHP function for reading attachement.
    Thanks
    Gaurav

  • What Verizon e mail attachment MB limit, ?

    I tried to do a attachment of  a web cam message of only 32 seconds long. and Verizon e mail would not send saying exceeded limit of MB for e mail attachment. I sent same web cam vid message on Aol.com and sent it know problem, on AOL I know can send up to 90 seconds video msg. And or 16 MB of photos attachments.
    If any knows why Verizon e mail Max MB attachment let me know, strange that AOL. e mail video time 90 seconds , I cannot believe Verizon e mail could not even handle 32 second video message, Now I know why nobody wants to bother with Verizon home web page, e mail substandard to AOL, yahoo, Microsoft e mail .

    Rocket11213 wrote:
    I tried to do a attachment of  a web cam message of only 32 seconds long. and Verizon e mail would not send saying exceeded limit of MB for e mail attachment. I sent same web cam vid message on Aol.com and sent it know problem, on AOL I know can send up to 90 seconds video msg. And or 16 MB of photos attachments.
    If any knows why Verizon e mail Max MB attachment let me know, strange that AOL. e mail video time 90 seconds , I cannot believe Verizon e mail could not even handle 32 second video message, Now I know why nobody wants to bother with Verizon home web page, e mail substandard to AOL, yahoo, Microsoft e mail .
    Should be 8 MB limit using the webpage email, and 20 MB using a third party email client like outlook or winmail.  
    Every email provider out there seems to have their advantages and disadvantages, here is a list of the top 18 free email services and what their plus and minus are.

  • Saving e-mail attachments

    Anyone know of a way of saving an e-mail attachment, or the whole e-mail with the attachment? I thought if I just moved it to the "Drafts" folder, I could use it like a place to save things, but that did not work.
    Any way to create an extra mail folder on the iPhone?

    No, you can't create folders on the iphone or save attachments on the iphone.
    If you have an imap account on the iphone, you can create the folder in the imap account using your computer. Then you can use that folder to move mail to on the iphone.
    Hope this helps.

  • Unsupported Mail Attachament

    Hi all,
    When I received an unsupported mail attachment, it's showing the attached file in gray color and it's not accessable, my question is, where this attachment file is saved? I want the full path for it please.
    Kind regards ('',)

    Attachments are not downloaded/saved on your iPhone, they are only viewed from a local temporary cache. Since the iPhone's directory structure is not user-accessible, the 'full path' is not relevant. If the attachment is of a type not supported for viewing on the iPhone, you'll need to access that email (and the attachment) from an email client on your computer.

  • I have a LG Lucid, and after the recent software update, my Outlook mail quit working. I have not been able to get it to import my e-mail. Anyone else with this problem?

    I have a LG Lucid phone and after the recent LG software update, I have not been able to import my Outlook mail. Anyone else with this problem?

        Connecting through email is extremely important these days donhinson. Let's get this fixed today. I first recommend removing the email account and readding it back to your device.This will help reset the settings. Listed below are steps to check the email settings, outgoing, and incoming servings.
    1.From a home screen, select Apps (located in the lower-right).
    2. Select Email.
    3. From an Inbox, select Menu (  located below the display).
    4.Select Account settings.
    5.Select Account display name.
    6.Enter an name then select OK.
    7.Select My name.
    8.Enter the name then select OK.
    9.Select Signature.
    10.Select the desired signature.
    --To add a custom signature, select New signature (plus ( ) symbol located in the upper-right), enter the signature then 11. select Save.
    12.Select Retrieve interval.
    13.Select one of the following:
    --Manual
    --5 minutes
    --10 minutes
    --15 minutes
    --30 minutes
    --1 hour
    --2 hours
    --4 hours
    --8 hours
    14.Select Maximum emails to show.
    15.Select one of the following:
    --20 messages
    --40 messages
    --60 messages
    --80 messages
    --100 messages
    --200 messages
    --500 messages
    --1000 messages
    16.Select Delete from server.
    17.Select one of the following:
    --Never
    --When I download from server
    --When I delete from device
    18. Configure the following as appropriate:
    -- Enabled when a check mark  is present.
    --Forward message
    --Forward attachment
    19. Select Change login settings.
    19. Ensure the following settings are correct then select Save:
    --Username
    --Password
    --Email address
    --INCOMING SERVER SETTINGS
    --POP3 Server
              --Secure type (e.g. Off, SSL, TLS)
    --Port number
    --APOP secure login
    -- Enabled when a check mark  is present.
    --OUTGOING SERVER SETTINGS
    --SMTP Server
    --Secure type (e.g. Off, SSL, TLS)
    --Port number
    --Authentication. Enabled when a check mark  is present.
    --Username
    --Password
    I hope the information above is helpful.
    KinquanaH_VZW

  • Email attachment filenames appear as "mail attachment".doc or "mail attachment."pdf

    Hi,
    I have Mac OS 10.7.5, I've synchronised my hotmail/outlook address to Mail application.
    I have no issues with sending or receiving emails with attachments.
    The problem I'm having is that the filename of all attachments appear as "mail attachment.doc" for Word files or as "mail.attachment.pdf" for PDF files.
    1)  If I log on to my hotmail account through the browser the attachments appear with the correct file name.
    2) The attachment file names happen to also appear correctly on my iPhone.
    3) I have other mailboxes set up in Mail application and attachment file names appear correct.
    It seems to be an issue with Mail application and the hotmail/outlook account.
    I would appreciate if anyone can give me some feedback on this issue.
    Kind regards,
    Doble Korona

    Peter
    Some things to try - after each step, see if it works...
    Ensure that you have the latest version of the OS and Quicktime and iPhoto.
    1. Repair Permissions using Disk Utility
    2. Delete the com.apple.iPhoto.plist file from the home / library / preferences folder. You'll need to reset your User options afterwards.
    3. Download BatchMod from
    http://macchampion.com/arbysoft/
    And apply it to the iPhoto Library Folder using the settings found here:
    http://homepage.mac.com/toad.hall/.Pictures/Forum/BatChmod.png
    (Credit to Old Toad for this one).
    4. Create a new account (systempreferences -> accounts) and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.
    Regards
    TD

  • Error while saving text as attachment

    Hi All,
      When a layout is generated. I get the following error :
    Error while saving text as attachment , Size of the attachment is maximun than the size allowed.
    I guess the generated layout is automatically saved as attachment. Can any one suggest how to disable the option of automatic saving as attachment
    Thanks ,
    Kaushik

    Hi,
    if you want to keep the automatic saving as attachment you might check note 599680.
    The saving is done normally in method TextGeneration in the underlying Business Object, e.g. BOSALESDOCGEN, BOACTIVITY or BOSERVICETRANSACTION. There you will find the according code lines in the end.
    Regards,
    Wolfhard

Maybe you are looking for