Attaching files to e-mails

I am using Safari to access my e-mail account at Yahoo. I sometimes cannot send our e-mails that have attachments. A message from Yahoo advises that I remove the attached files and try again. I've removed the attached files and reattached them but still can not send out the e-mail with the attached files. Anyone have this problem? Help!

I am having the same problem trying to attach Filemaker Pro files to an email. No solution yet. It was suggested I use Internet Explorer. It did allow me to attach the file, but I have not yet heard from the receiver.

Similar Messages

  • I used to have a indicator of time when attaching file in Yahoo Mail...I no longer have that in Safari 5.1.5...How can I get that indicator back???

    I used to have a indicator of time when attaching file in Yahoo Mail...I no longer have that in Safari 5.1.5...How can I get that indicator back???

    I tried to find help with the support by web chat for 2 days already, but every time it says that chat is un available (even if it's suppose to be 24/7)... I dont know what else to do.... please help!

  • Attaching File While Sending Mail

    Dear All,
                I want to send mail through sap for that i have used function module 'SO_NEW_DOCUMENT_SEND_API1'. Can anybode tell me how can i attach file in this mail.
    Regards,
    Mayank

    hi check this..
    REPORT  ZMAIL.
    TABLES: ekko.
    PARAMETERS: p_email   TYPE somlreci1-receiver .(give email here)
    TYPES: BEGIN OF t_ekpo,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
    END OF t_ekpo.
    DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,
          wa_ekpo TYPE t_ekpo.
    TYPES: BEGIN OF t_charekpo,
      ebeln(10) TYPE c,
      ebelp(5)  TYPE c,
      aedat(8)  TYPE c,
      matnr(18) TYPE c,
    END OF t_charekpo.
    DATA: wa_charekpo TYPE t_charekpo.
    DATA:   it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
            t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
            t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            w_cnt TYPE i,
            w_sent_all(1) TYPE c,
            w_doc_data LIKE sodocchgi1,
            gd_error    TYPE sy-subrc,
            gd_reciever TYPE sy-subrc.
    *START_OF_SELECTION
    START-OF-SELECTION.
      Retrieve sample data from table ekpo
      PERFORM data_retrieval.
      Populate table with detaisl to be entered into .xls file
      PERFORM build_xls_data_table.
    *END-OF-SELECTION
    END-OF-SELECTION.
    Populate message body text
      perform populate_email_message_body.
    Send file by email as .xls speadsheet
      PERFORM send_file_as_email_attachment
                                   tables it_message
                                          it_attach
                                    using p_email
                                          'Example .xls documnet attachment'
                                          'XLS'
                                          'filename'
                                 changing gd_error
                                          gd_reciever.
      Instructs mail send program for SAPCONNECT to send email(rsconn01)
      PERFORM initiate_mail_execute_program.
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      SELECT ebeln ebelp aedat matnr
       UP TO 10 ROWS
        FROM ekpo
        INTO TABLE it_ekpo.
    ENDFORM.                    " DATA_RETRIEVAL
    *&      Form  BUILD_XLS_DATA_TABLE
          Build data table for .xls document
    FORM build_xls_data_table.
      data: ld_store(50) type c.  "Leading zeros
      CONSTANTS: con_cret(5) TYPE c VALUE '0D',  "OK for non Unicode
                 con_tab(5) TYPE c VALUE '09'.   "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    *constants:
       con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
       con_cret type c value cl_abap_char_utilities=>CR_LF.
      CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR' INTO it_attach SEPARATED BY con_tab.
      CONCATENATE con_cret it_attach  INTO it_attach.
      APPEND  it_attach.
      LOOP AT it_ekpo INTO wa_charekpo.
    *Modification to retain leading zeros
      inserts code for excell REPLACE command into ld_store
      =REPLACE("00100",1,5,"00100")
        concatenate '=REPLACE("' wa_charekpo-ebelp '",1,5,"'
                                 wa_charekpo-ebelp '")' into ld_store .
      concatenate ld_store into .xls file instead of actual value(ebelp)
        CONCATENATE wa_charekpo-ebeln ld_store  wa_charekpo-aedat wa_charekpo-matnr  INTO it_attach SEPARATED BY con_tab.
        CONCATENATE con_cret it_attach  INTO it_attach.
        APPEND  it_attach.
      ENDLOOP.
    ENDFORM.                    " BUILD_XLS_DATA_TABLE
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          Send email
    FORM send_file_as_email_attachment tables pit_message
                                              pit_attach
                                        using p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     changing p_error
                                              p_reciever.
      DATA: ld_error    TYPE sy-subrc,
            ld_reciever TYPE sy-subrc,
            ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_email LIKE  somlreci1-receiver,
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des ,
            ld_sender_address LIKE  soextreci1-receiver,
            ld_sender_address_type LIKE  soextreci1-adr_typ,
            ld_receiver LIKE  sy-subrc.
      ld_email   = p_email.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
      w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE it_attach INDEX w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = pit_attach[].
    Describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  ld_format.
      t_packing_list-obj_descr  =  ld_attdescription.
      t_packing_list-obj_name   =  ld_attfilename.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      t_receivers-receiver = ld_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      APPEND t_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = w_doc_data
                put_in_outbox              = 'X'
                sender_address             = ld_sender_address
                sender_address_type        = ld_sender_address_type
                commit_work                = 'X'
           IMPORTING
                sent_to_all                = w_sent_all
           TABLES
                packing_list               = t_packing_list
                contents_bin               = t_attachment
                contents_txt               = it_message
                receivers                  = t_receivers
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
    Populate zerror return code
      ld_error = sy-subrc.
    Populate zreceiver return code
      LOOP AT t_receivers.
        ld_receiver = t_receivers-retrn_code.
      ENDLOOP.
    ENDFORM.
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
      WAIT UP TO 2 SECONDS.
      SUBMIT rsconn01 WITH mode = 'INT'
                    WITH output = 'X'
                    AND RETURN.
    ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    *&      Form  POPULATE_EMAIL_MESSAGE_BODY
           Populate message body text
    form populate_email_message_body.
      REFRESH it_message.
      it_message = 'Please find attached a list test ekpo records'.
      APPEND it_message.
    endform.                    " POPULATE_EMAIL_MESSAGE_BODY
    regards,
    venkat

  • Safari 5.0 freezes after attaching files in Yahoo Mail

    Since upgrading to Safari 5, I cannot use Yahoo mail after attaching a file to a message. The program acts like there is a dialog box open and it is waiting for a choice to be made, but there is no dialog box.

    HI,
    BrowserPlus is causing problems when attaching files to Yahoo mail. It's not compatible with Safari 5.
    Read here for help to uninstall BrowserPlus:
    http://help.yahoo.com/l/us/yahoo/browserplus/uninstall.html
    Carolyn

  • I can no longer attach files in Yahoo mail since upgrading to FireFox 4.0.1. I click the "attach" button and nothing happens - no file list to select from appears; nothing.

    Since upgrading to Firefox 4.0.1 the "attach files" function in my Yahoo Mail account no longer functions. When I click the "attach files" button nothing happens - nothing. No file selection box opens, no error message appears, no pinwheel of death, nothing.
    The "attach files" button is no longer 'hot' in FF 4.0.1 either = the "little hand" icon does not appear when I scroll over it. Other action buttons are still 'hot' ("attachments", "emoticons", "format", "hide bcc"etc.) - just not the "attach files" button.
    The Yahoo Mail "attach files" function still works when I use my Safari browser, however. So, it appears to be a FF4.0.1 issue.
    (Intel MacBook, Snow Leopard, 2gb ram, 360gb hd)

    You can try to delete the file mimeTypes.rdf
    See "Reset Download Actions"
    * http://kb.mozillazine.org/File_types_and_download_actions

  • Alignment problem in sending an attachment file as a mail

    Hi,
      My requirement is to send a mail where i have the data in an internal table.
    the .txt attachment file is sent properly no problem in that. But the text inside the file is not alligned properly.
    For eg if i have 5 records in the internal table which iam going to send as an attachment then 5 lines should exist on the attachment file.
    But for me what happens is
    for eg the first two records in the internal table is like as follows.
    record 1 : my name is rose
    record 2 : iam working in SAP ABAP consultant.
    These lines are coming in the attachment file like
    line 1: ame is rose  (some spaces are given then it prints) my  n
    line 2: n SAP ABAP consultant (some spaces are given then it prints) iam working i
    can anyone tell me why this happens . i want the lines to be  displayed as  it is in the internal table.
    can anyone tell how to solve this problem. Thanks...
    Regards,
    rose.

    Hi camila,
    visit this thread
    Alignment in mail body
    regards
    Anup.

  • How to attach files in a mail from user4s PC in a Portal aplication

    Hello,
    I am trying to send a mail with attachments from PL/SQL but I don4t know what must I do to attach files from the user's PC. Our aplication is developed with Portal.
    Does anybody knows any java program than can be used like portlet who opens the Outlook??
    Thank you.

    You can use methods listed inside Fuego.IO, but they don't work if you run your process in a client, I mean not the server.
    You can use JSP or methods developed in java in order to upload your files and Fuego.IO methods to access them after you upload them.
    Another thing you should consider is that if you upload files using Fuego library, there's a size limit for files.
    Take a look on How to Use FileChooser on for Client files
    Hope this help.
    Pablo

  • In Firefox, can't attach files to Yahoo Mail outgoing messages. Yahoo Mail works fine in Internet Explorer though.

    Since yesterday, when I switched from Comcast to AT&T as my broadband internet connection, I have not been able to attach files to my Yahoo mail messages using Mozilla Firefox. I don't have this problem when using Internet Explorer, but my default browser is Firefox by choice. Is this a Yahoo issue or a Firefox issue? Can you help me resolve it?

    Not helpful. 'clearing Firefox's cache' is not helpful, since 'cache' doesn't show up in any of the Firefox pulldown menu choices (wasted time looking for that), and the plethora of things 'recent' and 'history' to choose to act on in these menus is also a possible waste of time, not to mention removing useful info for no reason.
    I, too, have had this problem 'intermittently' for many months, always involving the 'first' file to attach in a Yahoo! email, and I've always used this workaround OK: click on the filename showing as 'being attached' (while Yahoo's doohickey round spinner denoting 'in progress' whirls and whirls to no effect) and use "Remove File"; THEN, REPEAT 'attach file' task & it then works, if slowly. After that for the same email, attaching add'l files NEVER HAS A PROBLEM.
    SO, now today, without any software update yet (I've downloaded Firefox v.11 & will install shortly), at numerous attempts during the day, I CANNOT get the FIRST file to attach in a Yahoo! email. Simply, utterly, frustrating without any rhyme or reason. "Everything else, on plethora of sites, working fine."
    thanks.

  • Trouble attaching files to e-mail

    This just started happening and I'm not sure what I installed or did to cause it. In any browser - Safari, Firefox, Explorer - I can't attach a document. I'm using SBC Yahoo and their tech support said it was a problem with my computer.
    When I choose a file to attach, it shows up, but when I click "attach", the browser tells me there was an error, no files are attached. I turned off my firewall but can't think of any other reason my files won't attach. I have no problems attaching files to my AOL mail but I don't always use AOL and sometimes need to use my SBC address.
    Any suggestions? Thanks!

    I'm having the same problem with my verizon business webmail...Safari won't attach files...The old version of Firefox worked fine (Firefox 1.5 doesn't work at all, so now I'm without the ability to attach files altogether)...Need to find the fix for Safari...

  • Get attached file outof incoming mail

    Hi,
    I've created an interface (Mail2Rfc), in which file is attached to incoming mail message. my basic reference was /people/michal.krawczyk2/blog/2005/12/18/xi-sender-mail-adapter--payloadswapbean--step-by-step which demonstrate how to implement getting attached file content via adaptor module.
    my issue:
    the file name can be changed, therefore the file_name parameter (required by adaptor module) can not be hard coded.
    how can i bypass the issue?
    Please advise,
    Uri

    Hi,
    10x for your replay.
    plz clarify:
    what is the module configuration i have to use? which Parameters & Parameters Values?
    currently i'm useing:
    swap.keyName=Content-Disposition
    swap.keyName=Content-Description
    swap.keyValue=attachment;filename="MailAttachment-1.xml";
    swap.keyValue=MailAttachment-1
    I tried to use keyName = payload-name instead of other keyName values, and interface was failing.
    Regards,
    Uri

  • Attaching Files to Yahoo Mail

    Hello,
    I am trying to attach files that I have just recently imported from my digital camera to Yahoo Mail. When I go to attach files, then to Pictures on the menu, I then click on Iphoto library, thats as far as it will go unless I want to attach the entire library (which I don't). Does anyone know how I attach the specific files I want? Thanks for all the help!!

    DeAnza
    Welcome to the Apple Discussions.
    There are three ways (at least) to get files from the iPhoto Window.
    1. Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. Show File: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    To upload to MySpace or any site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves. If you're willing to risk database corruption, you can restore the older functionality simply by right clicking on the iPhoto Library and choosing 'Show Package Contents'. Then simply make an alias to the folders you require and put that alias on the desktop or where ever you want it. Be aware though, that this is a hack and not supported by Apple.
    Regards
    TD

  • Cant attach files using yahoo mail

    When I attempt to attach a file in yahoo mail i get an error message.  I can attach the files if I use Firefox

    The problem is Safari 6...it's buggy and wouldn't allow me to attach any file types to a yahoo email note.  I downloaded Chrome and everything works fine.  This is my first Apple machine and I have to say I'm disappointed in their Safari browser.  The sales guy said I was "purchasing an elegent system that would work right out of the box", I  didn't anticipate having to do work-around solutions on day one.  What a joke.

  • Problems attaching files to e-mails

    After installing Lyon, from my wife's user she can't attach files to an e-mail. The window opens but only shows folders and the folders can not be opened. I can do it from my user. What could be happening?

    This could be a hardware problem, or it could be software problem.
    First... Get a full backup of your disks by booting from the DVD and using Disk Utility to copy the data to an external storage device, on the off change the disk or memory or server is failing; don't lose ground here, and try to avoid losing data.  Always, always, always have a good backup before you start hardware or software repairs.
    As Christoph recommends, do check the logs.  Rather than looking at the directories directly, I'd suggest doing this using the Console.app tool (as that's easier than rummaging in /var/log, if you're not already comfortable in the command shell) and see if there are any relevant errors being reported. 
    It appears this box is critical, and doesn't have a backup, or spare parts, or local available support.  I'd expect there are folks in the Denver area that can visit the site and sort out the hardware or software trigger, if your coworkers aren't in a position to assist here.
    If the box is under AppleCare, I'd plan for a trip to get the box looked at and potentially repaired.
    If the box is not under AppleCare, I'd look for a spare disk.  Or better (but more expensive), acquire (or bring along?) a spare Mac Mini (Server?) and probably either used or off eBay or such, as you'll want to have a spare for any potential hardware failure.  (It's better to have two of the same, and newer Mac Mini (Server?) boxes will arrive with (and require) Lion (Server?) and not 10.6.8.
    Usual path for a recovery here is an external backup (via booting the DVD and using Disk Utility to get that copy, and preferably a couple of external, full, current, copies of the data) and using the "migrate" option after a wipe and reinstallation, to bring a copy of the disk data back in.

  • Lion running Safari 5.1 cannot attach files in Yahoo Mail

    I've seen a bunch of various threads on this over years, but none have answered it for my situation.
    In this case clicking the "Attach" button in Yahoo Mail does absolutely nothing.  No freezes or crashes - it just will not invoke a file tree to pick the attachment from.
    I just migrated over frrom a 2009 Mini to a 2011 Mini.  The exact same browser version running in Snow on the old Mini was working perfectly 2 days ago.
    Thoughts?

    Thanks Carolyn - Done as per your suggestion! 
    I'm pretty sure this is something I couldn't do in Snow?  (I''ve only been using Lion for a few days now). - And/or this is something Yahoo only started to allow recently - before, in the old days POP Mail was an add on Pay feature.  IMAP is new(ish) for them.  Maybe this is something I never looked for either (old dog/new tricks)
    Speaking of Lion - looking to make sure the Yahoo messages were copying off of the Yahoo servers I looked for them in -  Home/Library/Mail - but that's hidden in Lion now.  Go-> ~/Library reveals that it's all downloading fine.
    FWIW - The "ATTACH" button started working again for me this morning without doing a single thing.  No restart, didn't quit anything - left the Mac to sleep for 5 hours and tried again and it's working!  Strange.

  • Can not attach files to certain mail accounts in mail

    I have three e-mail accounts (pop3) which I use Mail to get and send mail. But it seems I can only attach files to one account and not the other two accounts. the only workaround I found is to start attaching the files to the account which can take attachments and before I sent switch to the other account. Surprisingly the Attachment stays.
    any idea

    Hi Caroline,
    Are you trying to attach a file to the message without typing anything in the message body? You need to have typed something, even a space, in the message body before attachments will attach.
    Not sure exactly when, but this has been a 'feature' of Mail for a while now, and one that I personally dislike.

  • Can not attach file to g-mail

    Latley I am not able to attach files in my G-mail. There are small Word files. Everytime I try it, finder freezes. My  8 year old Thinkpad is faster than my Macbook Air!

    You are mostly misinterpreting the problem (and 'view as icon' will only mask the 'solution').
    You see, what you are experiencing is a facet of your email application.
    What other users see will be a facet of their email application.
    To explain, if you're using Mail.app you should be aware that Mail.app can interpret and display a wide variety of file formats - images, PDF, video, etc., etc.
    When you 'attach' such a file to a message Mail.app, by default, displays the content since this is what most people want. You have the option to just display an icon, but that's only really relevant for you.
    When the recipient gets the message what they see depends upon their client. If their client can interpret and render file attachments then they'll see the image. If it can't, they'll see an attachment link.
    Moreover, you have no control over this. It is entirely dependent on the mail client you are using, and the mail client the recipient is using. Even if you attach a file and 'view as icon', that has no bearing on whether it will appear as an icon or an inline document when it gets to the recipient - that's up to their browser abilities/settings (just like attaching as an image won't display as an image on the recipient's system if they can't display the file format, or their preferences are set to not do so).
    So knock yourself out viewing your attachments as icons, but don't expect that it will make any difference to the recipient.
    The only way you can overcome this is to send attachments in a file format that can't normally be displayed, such as a .zip archive.

Maybe you are looking for

  • Ipod Nano 4g not recognised by car stereo system

    I have recently purchased a new design Vauxhall Astra. One of the extras available was a USB connection which stated on the original advertising leaflet that it was fully Ipod compatible. Upon getting the car home I was eager to try out my Ipod Nano

  • Syntax for calling html page in PL/SQL package

    Hi, I'm trying to call html page (stored on server) in my pl/sql package! I have already create html page in pl/sql package code and it's works fine. Now create better html page (interface design) and stored on server. I would like to call that store

  • How to set a specific database as default?

    Hello; How i can set a specific database as default? please My sql server is Microsoft Sql Server 2000.

  • Windows Phone Language Support

    I am developing an app that is supposed to support 4 languages, "en", "fr", "de" and "lb". Locally, all works fine, but when generating the App packages, I get the error that not all languages are supported. I realized that the language "lb" (Luxembo

  • Development with SQL server

    hi, i am trying to deploy an oracle forms application through SQL server and Apache. i configured the apache and it now acts as a server and it also installs the jinitiator in the client machine, who wants to acess. but after establishes a connection