PSE11: unable to customize note in email when sending photo attachments. [was: CT]

When sending email photo attachment in Windows version of PSE11, it won't let me write my own note in the email as it is supposed to.  How do I fix this?

Yes, that is a problem in that version of the Adobe Email client.
A workaround is this:-
Open Notepad and type the text into that
Select all the text in Notepad and use Ctrl & C to copy it to the clipboard
Switch to the new mail message
Select all the text to be overwritten and use Ctrl & V to paste the contents of the clipboard over the old text.
I prefer switching to using Windows Live Mail.
Brian

Similar Messages

  • IPhoto not launching email when sending photos

    After I select photos to email in iPhoto, I hit the email icon and a new email screen doesnt pop up anymore. It used to launch it correctly w/ the photos attached but it has stopped. Does anyone have any suggestions?

    Mary:
    Welcome to the Apple Discussions. Have you checked iPhoto's preferences to make sure there's an email application selected? If there is and it's not working, close iPhoto and delete the iPhoto preference file, com.apple.iPhoto.plist, located in your User/Library/Preferences folder. Next run Disk Utility and repair disk permissions. Then launch iPhoto and reset your preferences, including the email selection.
    OT

  • Not delivered error when sending photos via messages-photos being received

    When using messages on iPhone 5 to send photos, I receive a not delivered error but the recipient tells me it has been received. I have tried turning phone off/on, signing out of messages on all devices then signing back in. Still occurring. Any ideas??

    Hello tsbnewtomac,
    The article linked below provides some useful troubleshooting steps that can help get Messages working correctly.
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Cheers,
    Allen

  • Not receiving email when sending large number of records using a FM?

    Hi..
    I am using the function module " SO_DOCUMENT_SEND_API1 " to send email....
    When a single record is there.. or around 5-6 records are there... email is coming successfully...
    But when there are more records..say around 100, the email is not coming... I checked SOST transaction and the status there is in red..and the error message is " Internal error: SO_OBJECT_MIME_GET Exception: 2 ".........
    What could be the reason behind this problem....... ??
    I have another problem... my output has over 60 fields, but in the email which i am receiving has only around 10 fields... how to solve this problem...??
    Plz help...

    Well... right now i am tryin to get only the first 2 fields.. but even in this case... i am not getting the email if around 15 records are there......
    I am using the code which is given below which i found in SDN only......In this code.. data is getting selected from EKPO... i tried changing the number of rows getting selected.. and in this case, the attachement is coming as desired... but when i use the same code for my prog.. i am not getting the mail.. even if there are only 10 records or so...
    *& Report  ZT062108   ALV Header                                    *
    REPORT  zt062108.
    TABLES: ekko.
    PARAMETERS: p_email   TYPE somlreci1-receiver
                                      DEFAULT '<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'
                                          'TXT'
                                          '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 1000 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.
    *  CONSTANTS: con_cret TYPE x VALUE '0D'.  "OK for non Unicode
    *             con_tab TYPE x 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.
        CONCATENATE wa_charekpo-ebeln wa_charekpo-ebelp
                    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

  • When I had my old blackberry connected to my computer, all incoming emails were routed to my outlook so I did not get mails on my blackberry.  How do I get it so my iphone4 does not receive emails when connected to my computer?

    I am getting my iphone inbox bombarded so would like it to not receive emails when connected to my computer.  My old blackberry had an app that took care of this which worked really well.  Am wondering if I can do the same with my iphone4.

    Blackberries were/are able to do that with some types of e-mail accounts because the mail is routed to an intermediary (BlackBerry Service).
    There is no equivalent for the iPhone as the phone communicates directly with the mail servers and does not go through a 3rd party.

  • My Iphone 4 will not receive email when connected to wifi,works fine on 3G

    My Iphone will not receive emails when connected to wifi,works perfect on 3G

    Arrr I have this prob to and this has been driving me made i thought it was a network area have changed providers brought different sim cards to get new numbers deleted everything off my iphone to reset it and still no luck..
    After reading your comment it has actually been since I have updated my phone.
    I have to turn off my phone everyday as I fly and i need to recieve messages when my phone is turned on if this isnt resolved quickly I am going to have to switch from Apple but I dont want to...
    Apple can you please advise if this is going to be sorted asap? Alot of people dont turn there phones off all of the time so wont notice however for those of us that do and have to this is a really HUGE ERROR that needs your QUICKEST ATTENTION !
    Thanks ;-D

  • How do I delete stored email addresses in my iphone? When sending photos, I don't want to have certain email addresses  "popping up" from the internal memory, I've deleted my entire "Contact" list but they still appear.  Help please!

    How do I delete stored email addresses in my iphone? When sending photos, I don't want to have certain email addresses  "popping up" from the internal memory, I've deleted my entire "Contact" list but they still appear.  Help please!

    As with the Mail app on a Mac, the iPhone's Mail app stores all email recipients in a list of previous recipients which is separate from the address book or contacts. The email address autofill feature when addressing an message pulls from Contacts and from the list of previous recipients.
    Different from the Mail app on a Mac, there is no access to the list of previous recipients with iOS on an iPhone, iPod Touch, or iPad to remove a previous recipient from the list, or to add a previous recipient to the address book or contacts that is not already entered - not at the present time anyway.
    The only way to purge the list of previous recipients at the present time is by restoring your iPhone with iTunes as a new iPhone or not from your iPhone's backup, which will start being re-populated again with every sent message.

  • Error message when sending photos as attachments in mail

    When sending photos from i photo in mail I get an error message "Can't get paragraph 8 of content of outgoing message id 142504208. Invalid Index" I can send one photo at a time but no more than one. I have recently upgraded to leopard from panther. I tried rebooting but no success. Any suggestions greatly appreciated.

    Bump. I have the same problem. Anyone shed some light on this?

  • Why do I get an error code 5 when sending photos from iPhoto?

    why do I get an error code 5 when sending photos from iPhoto?

    Read related topic
    Thank you & Best regards
    syrpimp
    =======================================================
    “You must continue to gain expertise, but avoid thinking like an expert." -Denis Waitley

  • Get error message that server could not be found when sending email thru iPhoto

    I have established a icloud/mobile me account.  Trying to use iphoto to send photos with emails and always get error message that server coule not be found.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • IOS 7.0.3 Email missing Text when sending photos by email

    Hello,
    I have recognized, that when sending a photo by email since ios 7.0 all text which is typed underneath the photo is not displayed by the revicer in his Email.
    Also my signatures are missing.
    When I check my outbox the Text is displayed correctly under the photos.
    Before iOS 7, I had never such problems.
    Does anyone else have theese problems?
    Thanks for any hints.
    Regards
    Dominik

    That doesn't work for me. First off, to reduce confusion, in iOS 7, it's General > Touch ID &amp; Passcode > Reply with Message: On.
    I've had this turned on since I got my 5S, but the Reply with Message function only appears for about a fifth of the phone calls I receive. I rarely see it. In each case, I have good cell reception, and it has nothing to do with who's calling, since I sometimes see it and sometimes don't for the same person. Another iOS 7 bug, I'm sure.

  • Default email when sending email from phone!!

    How do I change my email to send from a specific account rather than my Mobile Me account? i have my work account chosen as the default account but it is still not sending from that account. any ideas??

    The default email account selection is when you are outside of the Mail client only.
    If you are in your MobileMe account's Inbox or Sent mailbox when selecting new message, your MobileMe account is the default account used, and the same for your work account.

  • All of a sudden when sending photos from lightroom to photoshop for merging, I get "photo merge.jsx could not be found.  I have used this previously without trouble

    I have been working on photos in Lightroom for months and making panoramas in photoshop from lightroom without any problem.  All of a sudden, today, I get a message when I try to send photos to photoshop "Photmerge.jsx could not be found"
    Anyone know where it is?  I don't find these words in my photoshop CS4 anywhere.  Help!
    I tried to use an old catalogue that I've used to make panoramas with photoshop many times and I get the same message. 

    I'm in the same boat...so far no one has helped here

  • How to set email "from" address when sending photo

    when I send photos from my iPhone people respond to the wrong address. This just started. How do I switch the FROM address to the correct email address.

    The From address you want has to be your default account - you can set this in the Mail settings.

  • Chinese Characters in Body of the Email when sending attachments.

    I have google and exchange accounts connected to mac mail. Whenever I send an attachments through the exchange account via mac mail, the recipient receives the attachment however is filled with Chinese characters in the body of the email that look like this (⁥敧敮慲整⁤祢䔠捸慬浩牥吠浥汰瑡⁥摅瑩牯漠㘰ㄺ㨶㈳䘠楲慤ⱹ㤠䨠湡慵祲㈠㄰‵ⴭാ㰊呓䱙⁅祴数琽硥⽴獣㹳⹐慥捥㌱㙥〭㉢ⵤ㐴㜳㠭㐸ⴴ散㜸挴㌳㌳㑢笠਍䴉剁䥇㩎〠浣〠浣 〠瑰਍ൽ䰊⹉慥捥㌱㙥〭㉢ⵤ㐴㜳㠭㐸ⴴ散㜸) and goes on for 10-15 lines even when there is no content in the email.
    The OSX that I am running is Yosemite Version 10.10. Does anyone have a resolution to this problem? Thanks

    It looks like bogus chinese created when a message encoded as utf-8 is read as if it were encoded as utf-16.
    See if the people who run the exchange server can help, if that is the only account where this happens.  Such systems often botch encodings.  I don't know of anything you could do at your end beyond playing with the Windows Friendly attachment setting in Mail.

Maybe you are looking for

  • Manager field in AD is not populating

    Hi guys, I have installed AD connector in OIM 11gR2 and provisioning is working fine. But the manager field is not getting populated. Please let me know how to populate manager field also in AD.

  • Error generating a Folio

    Hallo everybody, When generating a Folio in InDesign CS6 I get the messagge: "Error generating content. [Error: Impossible to find the resources of one or more layers. Check that the resources utilized are available on the disk, then apdate the artic

  • Small dvd stuck in dvd drive

    My son stuck a small dvd into the dvd drive in my MacBook Pro and now I can't get it out.  The size of the dvd is much smaller than standard... it came with a watch I bought my husband for Christmas.  Any ideas on how to eject?  I tried going to Laun

  • IPhone 6 Plus 16GB Storage

    I bought today an iPhone 6 Plus 16GB and noticed that out of the 16GB 1.3GB were already used and that 10GB is free. When I had iPhone 5 16GB it had 14GB free. Is there anyway to retain the space?

  • IXML with fieldname broken

    Hi all, We are using iXML for merging fields in Word documents. The document is converted from binary to xstring and then passed through CL_ABAP_ZIP functionality, and then parsed thorugh the Stream Factory and so on... Actually I haven't made this p