HT1338 when send email there is no sound of the whoosh

there is no woosh sound when I email ??

Mail > Preferences > General
New message sound:
Play sound for other mail actions.
Make sure that the box is checked.
If it is checked, uncheck and recheck it.
Hope this helps.

Similar Messages

  • Since upgrading to 31.0 I get the following error messages when composing and sending email: There was an error saving the message to Sent Mail and 1 more err

    The other error messages are "cannot copy message to drafts" and " thunderbird failed to connect to gmail server". This appears to only happen when sending mail to a gmail address.

    OK, you seem to be running Zone Alarm as your firewall. It includes a utility which checks to see whether a site is safe or not and also adds a plugin to Firefox which is listed as '''npFFApi'''. Can you disable that and see if it makes any difference?
    To get to the plugins manager, click the orange Firefox button, then click "Add-ons". In the page that opens, click the "Plugins" link on the left which will open the menu. Then find '''npFFApi '''and click the "''Disable''" button.

  • When sending email PO in a PDF attachment, the attachment can not be openen

    Hi all,
    We are trying to send an email with the PO in PDF format.  We got the email but the attachment can not be opened. 
    Error reads: Adobe could not open test.pdf because  it is either  not a supported file type  or because  the file has been damaged (for example , it was send as a email attachemnet and was not  correctly decoded).
    Could any body bring some light?   We know that everything in SCOT is fine because we can email the PO through configuration to the vendor without problem. It is just these extra copies that do not work.
    a) We are modifying our custom Print program to add the code below after closing the form.
    in few words:
    a) We are getting the OTF from closing the form.
    b) Converting the OTF to PDF
    c) Sending the PDF as attachment.
    data: lt_docs      TYPE TABLE OF docs.
    data: pdf_bytecount TYPE i.
    data: begin of pdfout occurs 0,
       tline type tline,
    end of pdfout.
    Ende Formulardruck --------------------------------------------------*
      CALL FUNCTION 'CLOSE_FORM'
           IMPORTING
                result = result
           tables
                otfdata = otf.
      IF RESULT-TDSPOOLID NE SPACE.
        SPOOLID = RESULT-TDSPOOLID.
        PERFORM PROTOCOL_UPDATE USING '320' SPOOLID SPACE SPACE SPACE.
      ENDIF.
      if result-userexit eq 'C' or
          result-userexit eq 'E'.
        retco = '9'.
      endif.
      CALL FUNCTION 'CONVERT_OTF_2_PDF'
        IMPORTING
          bin_filesize           = pdf_bytecount
        TABLES
          otf                    = otf
          doctab_archive         = lt_docs
          lines                  = pdfout
        EXCEPTIONS
          err_conv_not_possible  = 1
          err_otf_mc_noendmarker = 2
          OTHERS                 = 3.
    Creation of the document to be sent File Name
       maildata-obj_name = 'TEST'.
    Mail Subject
       maildata-obj_descr = 'Subject'.
    Mail Contents
       append mailtxt.
      describe table mailtxt lines tab_lines.
      read table mailtxt index tab_lines.
      maildata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( mailtxt ).
    Creation of the entry for the compressed document
      clear mailpack-transf_bin.
      mailpack-head_start = 1.
      mailpack-head_num = 0.
      mailpack-body_start = 1.
      mailpack-body_num = tab_lines.
      mailpack-doc_type = 'RAW'.
      append mailpack.
    Move OTF code to structure SOLI form email
    CLEAR solisti1. REFRESH solisti1.
    LOOP AT otf.
      solisti1-line = otf.
      APPEND solisti1.
    ENDLOOP.
    Move pdf code to structure soli form email
      clear solisti1. refresh solisti1.
      loop at pdfout.
        solisti1-line = pdfout.
        append solisti1.
      endloop.
      loop at solisti1.
         move-corresponding solisti1 to mailbin.
         append mailbin.
      endloop.
      describe table mailbin lines tab_lines.
    mailhead = 'TEST.OTF'.
      mailhead = 'TEST.PDF'.
      append mailhead.
    Creation of the entry for the compressed attachment
      mailpack-transf_bin = 'X'.
      mailpack-head_start = 1.
      mailpack-head_num = 1.
      mailpack-body_start = 1.
      mailpack-body_num = tab_lines.
    mailpack-doc_type = 'OTF'.
      mailpack-doc_type = 'PDF'.
      mailpack-obj_name = 'TEST'.
      mailpack-obj_descr = 'Subject'.
      mailpack-doc_size = tab_lines * 255.
      append mailpack.
      mailrec-receiver = '[email protected]'.
      mailrec-rec_type = 'U'.
      append mailrec.
      mailrec-receiver = '[email protected]'.
      mailrec-rec_type = 'U'.
      append mailrec.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
              EXPORTING
                   DOCUMENT_DATA              = maildata
              TABLES
                   PACKING_LIST               = mailpack
                   OBJECT_HEADER              = mailhead
                   CONTENTS_TXT               = mailtxt
                   RECEIVERS                  = mailrec
              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.
    ENDFORM.

    Dear Monica,
      You need to configure the system with respect to functional point of view and need to write the following code in print program. i have done this and solution is as follows.
    <b>  Reward me for this solution.</b>
    Process 11 (MM)     Sending RFQs and POs to vendors directly from the system instead of sending thru Courier or Fax     
    Existing Process (AS-IS)     Presently system is not supporting this requirement
    Business Requirements     RFQ’s to be linked with vendor master with e-mail to send enquiries directly through system instead of courier/fax. Vice versa P.O’s.  Specifications, drawings should also go to vendor along with mail.
    To-Be     
    Configuration Settings:                  
    1) Spro – Materials management – Purchasing – Messages – Output control – Message types – Define message types for RFQ/ PO
    •     Created ZEK1,ZMI and ZEK2 for RFQs
    •     Created ZIK,ZOC,ZOK,ZOM,ZSI, ZSK2 and ZSM for Pos
    •     The above New output types Included with existing Print Forms and Programs but modified with External send(5) medium, and added company’s letter head thru ABAP developments (details provided below)
    •     The above new output types also maintained for Fine- tuned control (thru same navigation) for New(1) and Change(2) operations
          2) Spro – Materials management – Purchasing – Messages – Output control – Message   determination schemas – Define message schema for RFQ/ PO
    •     Maintained the new output types in the control data
    3)     Maintain Condition records for the New out put types (copied same document types from the existing old output types)
    Easy access – Logistics – Materials management – Purchasing – Master data – Messages – MN01 (for RFQs)/ MN04 (for Pos)
    4)     Maintain Email id of Vendor in Vendor master.
    Developments (ABAP):
    1)  Copied the existing print programs and forms of the corresponding out types.
    2) Addition of header window in each corresponding form (HEADER window). Uploaded the HEADER3 graphics in the header window.
    INCLUDE HEADER3 OBJECT GRAPHICS ID BCOL LANGUAGE EN
    3) Added the the following code in TOP includes
                       TYPE-POOLs szadr.
               INCLUDE:  LMEDRUCKF09.
    data: intnast         LIKE snast,
          lvs_recipient   LIKE swotobjid,       "Internet
          lvs_sender      LIKE swotobjid,       "Internet
          lvs_comm_type   TYPE ad_comm,
          lvs_comm_values TYPE szadr_comm_values,
          p_retco         TYPE i.
    5)     Addition of the perform to SOS include for header window display
           PERFORM WRITE_FORM_HEADER.
    *&      Form  WRITE_FORM_HEADER
          text
    -->  p1        text
    <--  p2        text
    FORM WRITE_FORM_HEADER.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'HE1'
       FUNCTION                       = 'SET'
       TYPE                           = 'BODY'
       WINDOW                         = 'HEADER'
    IMPORTING
       PENDING_LINES                  =
    EXCEPTIONS
       ELEMENT                        = 1
       FUNCTION                       = 2
       TYPE                           = 3
       UNOPENED                       = 4
       UNSTARTED                      = 5
       WINDOW                         = 6
       BAD_PAGEFORMAT_FOR_PRINT       = 7
       SPOOL_ERROR                    = 8
       CODEPAGE                       = 9
       OTHERS                         = 10
    ENDFORM.
    6)     In the corresponding FORM include the following code has been added.
    DATA:  lvs_comm_type     TYPE   ad_comm,
            lvs_comm_values   TYPE   szadr_comm_values,
            xprogramm         type   sy-repid.
      ... use stratagy to get communication type
          CALL FUNCTION 'ADDR_GET_NEXT_COMM_TYPE'
               EXPORTING
                    strategy           = nast-tcode
                    address_number     = lfa1-adrnr
               IMPORTING
                    comm_type          = lvs_comm_type
                    comm_values        = lvs_comm_values
               EXCEPTIONS
                    address_not_exist  = 1
                    person_not_exist   = 2
                    no_comm_type_found = 3
                    internal_error     = 4
                    parameter_error    = 5
                    OTHERS             = 6.
          IF sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    convert communication data
          MOVE-CORRESPONDING nast TO intnast.
          MOVE sy-repid           TO xprogramm.
    7) By using the function module we can get sender and reciepient mail ids to variables lvs_recipient    lvs_sender
          CALL FUNCTION 'CONVERT_COMM_TYPE_DATA'
               EXPORTING
                    pi_comm_type              = lvs_comm_type
                    pi_comm_values            = lvs_comm_values
                    pi_country                = lfa1-land1
                    pi_repid                  = xprogramm
                    pi_snast                  = intnast
               IMPORTING
                    pe_itcpo                  = itcpo
                    pe_device                 = xdevice
                    pe_mail_recipient         = lvs_recipient
                    pe_mail_sender            = lvs_sender
               EXCEPTIONS
                    comm_type_not_supported   = 1
                    recipient_creation_failed = 2
                    sender_creation_failed    = 3
                    OTHERS                    = 4.
          IF sy-subrc <> 0.
          Avoids cancellation with message TD421
            p_retco = '1'.                                           "831984
            PERFORM protocol_update USING '740' space space space space.
          dummy message to make the message appear in the where-used list
            IF 1 = 2.
              MESSAGE S740(me).
            ENDIF.
            EXIT.
          ENDIF.
          IF xdevice = 'MAIL'.                                       "885787
        Check validity of email address to avoid cancellation with TD463
            CALL FUNCTION 'SX_ADDRESS_TO_DEVTYPE'                    "831984
              EXPORTING
                recipient_id            = lvs_recipient
                sender_id               = lvs_sender
              EXCEPTIONS
                err_invalid_route       = 1
                err_system              = 2
                OTHERS                  = 3.
            IF SY-SUBRC <> 0.
              p_retco = '1'.
              PERFORM protocol_update USING '740' space space space space.
           dummy message to make the message appear in the where-used list
              IF 1 = 2.
                MESSAGE S740(me).
              ENDIF.
              EXIT.
            ENDIF.
          ENDIF.
    8)     Attaching the new print program and form in NACE transaction.
    Steps for End user:
    1)     Creating the Purchase Order or RFQ with suitable document type through ME21N or ME41 .
    2)     Executing the transaction ME9F and in selecting the suitable output type.
    3)     Executing the transaction ZSEND_PDOC using INT as input.
    4) With above steps we can able to send purchase order or RFQ to vendor as an attachment through e-mail in PDF format.
    Regards
    Badari

  • I have completed a song on the GarageBand app which plays fine. I export it via email and it opens up in iTunes on my PC fine but when you play it there is no sound from the file. Anyone know I am doing wrong please?

    I have completed a song on the GarageBand app which plays fine. I export it via email and it opens up in iTunes on my PC fine but when you play it there is no sound from the file. Anyone know I am doing wrong please?

    you might need codecs on you pc. i find vlc player and codecs is perfect for music and videos.

  • TS3274 Cannot get my swish to sound when sending emails!  HELP.  What can i do?

    Cannot get my SWISH to come on when sending emails out.  Can you help?

    check in settings, sounds, to make sure you do not have 'system sounds' muted.  Swish, keyboard clicks etc are called system sounds and can be muted.

  • How can I get a picture to go with my email signature when sending emails from my iPad? Only a square box shows up on my signature not the actual picture I iploaded in my settings.

    How can I get a picture to go with my email signature when sending emails from my iPad? Only a square box shows up on my signature not the actual picture I iploaded in my settings.

    Only Apple Account Security could help at this point. You can try calling Apple Support in Canada - you'll have to find one of the several ways, such as Skype, to call an 800 number from outside of the relevant country - and ask for Account Security and see if they can help. Or you can find a friend who speaks Chinese and ask them to help you talk to Apple Support in China. There are really no other options that I know of.
    Note, by the way, that these are user-to-user support forums. You aren't speaking with Apple when you post here.
    Regards.

  • Error 554-5.6.0 Corrupt message content... when sending emails to other users on same exchange server

    Hello
    I have a very strange problem at a customer from our company.
    The problem happens to only one user on the Exchange 2010 organization (SP3, no additional patches installed, Server is 2008 r2).
    When this specific user sends an email to one or more users on the same Exchange organization, he gets sometimes (not always) the following error back:
    554-5.6.0 Corrupt message content 554 5.6.0 STOREDRV.Deliver.Exception:ConversionFailedException; Failed to process message due to a permanent exception with message Inhaltskonvertierung: Fehlerhafter TNEF-Zusammenfassungsinhalt. ConversionFailedException:
    Inhaltskonvertierung: Fehlerhafter TNEF-Zusammenfassungsinhalt. [Stage: CreateReplay]
    So - TNEF, corrupt message Content... I googled the error and checked all the recommended Solutions. The Outlook Client is ok, I have doublechecked it and everything is configured like it has to be.
    The Problems happens as above described only for one user when he writes emails to users from one specific Domain on the same Exchange organization (example
    [email protected]).
    He has this specific contacts in a SharePoint contact list which is connected to his Outlook Client.
    Thanks for any help or Information!
    Regards

    Hi,
    According to your description, I understand that one user cannot send message with error “554-5.6.0 Corrupt message content 554 5.6.0”.
    If I misunderstand your concern, please do not hesitate to let me know.
    I want to double confirm whether it works or not when send message to external address, how about the OWA?
    It seems that message has corrupt content. Is there any 3rd prevent software or Anti-Virus software in Exchange 2010?
    Regarding this issue, firstly I would like to explain that content conversion occurs in two places, that are the Store Driver and the Content Conversion stage of Categorization. Since the issue exists in the delivery mail of internal user, the agent that was
    used in the process of handling by Store Driver may cause this issue.
    Please try to enable pipeline tracing and content conversion tracing to get more details about this error, for your reference:
    Content conversion tracing:
    http://technet.microsoft.com/en-us/library/bb397226.aspx
    Pipeline tracing:
    http://technet.microsoft.com/en-us/library/bb125018.aspx
    Best Regards,
    Allen Wang

  • I just got my replacement ipad last night. when i got home and tried the applications, there is no sound. but the videos do have sounds.

    i just got my replacement ipad last night. when i got home and tried the applications, there is no sound. but the videos do have sounds. i already checked the settings. i cannot find what's causing it. please help.

    You may have already checked the settings, but it still sounds like you have system sounds muted.
    If you lose sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds may have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • IPhoto quits when sending email

    iPhoto quits when sending email in iPhoto.

    Thanks Terence,
    What version of iPhoto.
    - What version of the Operating System.
    I recently upgraded to iPhoto '11,ver. 9.3.1.
    I have a MacBook Pro running 10.7.4.
    Previously I had no issues sending emails with iPhotos via my mail application.  Now I can't email out of iPhoto or out of mail.  iPhoto just quits.  There are no error messages.
    I have started a new iPhoto library separate from my original library.  Still quits.
    I have opened a new account for start-up, still quits.
    Any suggustions will be appreciated.
    Thanks,
    Ron
    - What steps have you tried already to solve the issue.

  • Changing the font size when sending email out from the iPad with MobileMe

    Is there a way from the iPad, or from my MacBook to the iPad, that I can increase the size of the font when typing outgoing mail? I use MobileMe on both my iPad and MacBook. My sister has cataracts and she needs the type size larger than what is already set on the iPad outgoing mail. I can make the type size larger for my incoming mail - I guess I did it through iPad settings -but I can't seem to figure out how to make it larger for my outgoing mail. I would prefer to be able to answer her on my iPad than having to switch back to my Mac each time she writes. Thank you.

    I guess what I am looking for is a toolbar when I am sending email so that I can change the font size, change the typeface, make words bold, underline them
    I don't think you will find any app that does that, it's the kind of feature only Apple can add. You can tell them here:
    http://www.apple.com/feedback/ipad.html

  • Load x# of messages when sending email from my pop account

    Hi
    I'm getting a "load x# of messages" when sending email from any address on my pop account. No problem receiving messages from other accounts. Is there a setting that can remedy this?
    Thanks

    My z10 is going back today, for multiple reasons
    Contacts won't sync across
    Won't work properly with my car when all previous BBs did
    Lots of useful features have disappeared
    But most importantly NONE of my email accounts will send mail from it when they all did previously with the Storm2.
    A big thumbs down from me for the z10 even if it is a fancy looking phone and the browser is much better. I stuck with BB because I wanted a tool not a toy

  • How do I eliminate the thumbnail picture when sending email?

    When I am compsing an email there is a small thumbnail pictue of me in the upper right hand corner. How can I eliminate it??
    Also when sending emails they show as coming from me, but when my wife replys to an email they show as coming from her. I would like to have her emails identified with her and mine from me. Can I do that with one account???

    I finally got it, but I had a difficult time figuring out how to remove it from my contact file.
    Concerning email addresses, if I set up a separate email address for my wife will all incoming emails for both addresses automatically download to my Mac and iPad???
    Thanks

  • I just downloaded OSX maverick and now I cannot drag addresses from my contacts to the "To" box when sending emails.  How can I go back to old drag groups or addresses to the box?

    I just downloaded OSX Maverick and now I cannot drag addresses from my contacts to the "To" box when sending email.  How can I get back to dragging groups or individual contacts to emails?

    Starting to type a name and getting a list of matches is good but it's not a substitute for being able to choose twenty or thirty names from your address book and dragging them into the "To" field. Of course many contacts can be put into a group but I may want to send occasional emails to many people who don't fit any group, and there may be no need to create a group just for that email.
    If you agree please send an email to apple feedback for Maverick OS X.

  • When sending email to pc users, recipient does not receive text in email?

    Hi
    when sending email using MAIL to pc users from 27" IMAC, recipient receives the email and attachments, but does not receive my note/text in email?
    any ideas?

    If they are using Outlook, that is likely the problem.
    There are two settings in the Edit>Attachments, Always send windows-friendly and attachments at end of message.
    Also, set the message as Plain Text (Format menu).
    Outlook has always been crappy with anything but Exchange email. They haven't fixed it in about ten years, so I wouldn't expect any changes in the future.

  • How can I request a return receipt when sending email from Leopard Mail?

    Has anyone found a way to request return receipts when sending email with Leopard Mail?

    see this [link|http://discussions.apple.com/thread.jspa?messageID=7244096&#7244096].
    However,
    this is only possible if the email client of the e-mail receiver supports this feature and it is turned on. if it doesn't support it or it supports it but the feature is turned off there is absolutely nothing you can do.

Maybe you are looking for