Email Reply Formatting Issue

I am having an issue with my Droid Charge when replying to an email using an Exchange account.
Normally, when someone receives a reply, the email is formatted like this:
Great!  Thanks!
Sent from my Verizon Wireless Phone
From: SenderLast, SenderFirst
Sent: Tuesday, August 02, 2011 8:06 AM
To: MeLast, MeFirst
Subject: RE: Dummy Email Subject
Hey buddy!  How are you doing?
Sender
However, when people get replies from me, it is formatted like this:
Great!  Thanks!
Sent from my Verizon Wireless Phone
"SenderLast, SenderFirst" wrote:
Hey buddy!  How are you doing?
Sender
Any ides on how to fix this?

hi ,
Why cant you try putting tablle format for this. and you can make header in bold also
refer this page
Table as Email Body
Thanks Sam.

Similar Messages

  • Email Body formatting Issue

    Hi,
    We have a requirement to send an email with body in the below mentioned format. I have populated the final internal table with necessary data. I have concatenated all the columns of each record of the final internal table into a text variable with necessary spaces and appended to another internal table of type 'SOLI_TAB'. I am using CL_BCS class to send email. But I am facing an issue with the formatting. Also the column headings should be in bold.
    Column1        Column2         Column3     Column4      Column5
    XXXXX          XXXXXX         XXXXXX    XXXXXX      XXXXX
    XXXXX          XXXXXX         XXXXXX    XXXXXX      XXXXX
    XXXXX          XXXXXX         XXXXXX    XXXXXX      XXXXX
    Current Behaviour:
    Column1        Column2         Column3     Column4      Column5
    XXXXX          XXXX        XXXXXX    XXXXXX      XXXXX
    XXXXX          XXXXXX         XXXXXX    XXXXXX      XXXXX
    XXXXX          XXXXXX         XXXX    XXXXXX      XXXXX
    Can any one help me on this?
    Regard

    hi ,
    Why cant you try putting tablle format for this. and you can make header in bold also
    refer this page
    Table as Email Body
    Thanks Sam.

  • Need help for formatting issues

    Hi all,
    I have sap script, tried to display the item table in Main window but the formatting issue occurs.
    There are eight columns and define the tab positions also for same but still not able to solved.
    Any suggestions welcome,
    Regards,

    Thanks for reply,
    Formatting issue occurs like :
          Serno      City/State     Dept      Customer#      Material   Weight   Quan      Invoice
             1              Delhi DL       PRO     1232121        MAT        10          22          33323 
    it comes like this but not coming to correct places.
    If more info needed then post it again .
    Regards,

  • Format issue in opening an XLS attachment sent through email by ABAP2XLSX

    I have downloaded the ABAP2XLSX nuggets and tried to send an attachment in the email using the SAP. But when opening the attachment it is giving up an format issue and not able to view the content. I am able to save the XLSX file on the PC and able to read it but when I  send it to email it doesn't open correctly and it is in a non readable format. Please find the code that I have been using. Can someone help me on this.
    TYPES: BEGIN OF tp_zzrule,
             zzprog     TYPE zzfunc,
             zzdata     TYPE zzcri1,
             zzseq      TYPE zzseq,
             zzkey1     TYPE zzkey1,
             zzkey2     TYPE zzkey2,
         END OF tp_zzrule.
    DATA: w_zzrule   TYPE tp_zzrule,
          t_zzrule   TYPE TABLE OF zzourule.
    TYPE-POOLS: abap.
    DATA:   v_document            TYPE REF TO cl_document_bcs,
            v_recipient           TYPE REF TO if_recipient_bcs,
            v_main_text           TYPE bcsy_text,
            v_send_request        TYPE REF TO cl_bcs,
            v_msub                TYPE so_obj_des,
             v_size               TYPE so_obj_len,
            v_string2             TYPE string,
            v_attsub              TYPE sood-objdes,
            v_mailid              TYPE ad_smtpadr,
            v_sent(1)             type c,
            v_sent_to_all         TYPE os_boolean,
            v_string              TYPE string,
            v_repid               TYPE sy-repid,
            v_title               TYPE so_text255,
            v_dochead             TYPE so_text255.
    DATA lt_test TYPE TABLE OF sflight.
    DATA: lo_excel                TYPE REF TO zcl_excel,
          lo_excel_writer         TYPE REF TO zif_excel_writer,
          lo_worksheet            TYPE REF TO zcl_excel_worksheet,
          column_dimension        TYPE REF TO zcl_excel_worksheet_columndime.
    DATA: ls_table_settings       TYPE zexcel_s_table_settings.
    DATA: lv_file                 TYPE xstring,
          lv_bytecount            TYPE i,
          lt_file_tab             TYPE solix_tab,
          t_objtxt  like solisti1   occurs 0 with header line,
          t_objbin  like solisti1   occurs 0 with header line,
          t_objpack like sopcklsti1 occurs 0 with header line,
          t_reclist like table of somlreci1 with header line.
    DATA: lv_full_path      TYPE string,
          lv_workdir        TYPE string,
          lv_file_separator TYPE c.
    CONSTANTS: lv_default_file_name TYPE string VALUE 'multi sheet test.xlsx'.
    PARAMETERS: p_path  TYPE zexcel_export_dir,
                p_empty TYPE flag.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_path.
      lv_workdir = p_path.
      cl_gui_frontend_services=>directory_browse( EXPORTING initial_folder  = lv_workdir
                                                  CHANGING  selected_folder = lv_workdir ).
      p_path = lv_workdir.
    INITIALIZATION.
      cl_gui_frontend_services=>get_sapgui_workdir( CHANGING sapworkdir = lv_workdir ).
      cl_gui_cfw=>flush( ).
      p_path = lv_workdir.
    START-OF-SELECTION.
      IF p_path IS INITIAL.
        p_path = lv_workdir.
      ENDIF.
      cl_gui_frontend_services=>get_file_separator( CHANGING file_separator = lv_file_separator ).
      CONCATENATE p_path lv_file_separator lv_default_file_name INTO lv_full_path.
    SELECT *
        INTO TABLE t_zzrule
       FROM zzourule
      WHERE zzprog  = 'RV63A999'.
        SELECT * FROM sflight INTO TABLE lt_test.
      " Creates active sheet
      CREATE OBJECT lo_excel.
    For first Sheet in the excel workbook
      " Get active sheet
      lo_worksheet = lo_excel->get_active_worksheet( ).
      lo_worksheet->set_title( ip_title = 'Test sheet one').
      ls_table_settings-table_style  = zcl_excel_table=>builtinstyle_medium2.
      ls_table_settings-show_row_stripes = abap_true.
      lo_worksheet->bind_table( ip_table          = lt_test
                                is_table_settings = ls_table_settings ).
      lo_worksheet->freeze_panes( ip_num_rows = 3 ). "freeze column headers when scrolling
      column_dimension = lo_worksheet->get_column_dimension( ip_column = 'E' ). "make date field a bit wider
      column_dimension->set_width( ip_width = 20 ).
    For second Sheet in the excel workbook
      lo_worksheet = lo_excel->add_new_worksheet( ).
      lo_worksheet->set_title( ip_title = 'Second sheet' ).
      lo_worksheet->set_cell( ip_column = 'B' ip_row = 2
               ip_value = 'This is the test for second sheet by Pavan' ).
      ls_table_settings-table_style  = zcl_excel_table=>builtinstyle_medium2.
      ls_table_settings-show_row_stripes = abap_true.
      lo_worksheet->bind_table( ip_table          = t_zzrule
                                is_table_settings = ls_table_settings ).
    This will create excel.
    CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
      lv_file = lo_excel_writer->write_file( lo_excel ).
    " Convert to binary
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer        = lv_file
        IMPORTING
          output_length = lv_bytecount
        TABLES
          binary_tab    = lt_file_tab.
    Save the file on to the PC
      cl_gui_frontend_services=>gui_download( EXPORTING bin_filesize = lv_bytecount
                                                        filename     = lv_full_path
                                                        filetype     = 'BIN'
                                               CHANGING data_tab     = lt_file_tab ).
    *--Create and set document with attachment.
    v_main_text-line  = 'This is the main text not sure where this would print'.
    append v_main_text.
      TRY.
        v_send_request = cl_bcs=>create_persistent( ).      "#EC .., bzw.
        CATCH cx_send_req_bcs . "#EC NO_HANDLER
      ENDTRY.
      v_msub       = 'Test excel with multi sheets.XLS'.
      TRY.
          v_document = cl_document_bcs=>create_document(
          i_type     = 'RAW'
          i_text     = v_main_text
          i_subject  = v_msub ).
        CATCH cx_document_bcs . "#EC NO_HANDLER
      ENDTRY.
        v_size = lv_bytecount.
    *--Add the attachment.
      TRY.
          v_document->add_attachment(                          "#EC .., bzw
                i_attachment_type    = 'EXT'
               i_attachment_type    = 'XLS'
               i_attachment_type    = 'RAW'
                i_attachment_subject = v_attsub
                i_attachment_size    = v_size
               i_att_content_hex    = lt_file_tab ).    "#EC .., bzw.
               i_att_content_hex    = lt_file_tab ).    "#EC .., bzw.
        CATCH cx_document_bcs . "#EC NO_HANDLER
      ENDTRY.
    *--Add document object to send request.
      TRY.
          v_send_request->set_document( v_document ).         "#EC .., bzw.
        CATCH cx_send_req_bcs . "#EC NO_HANDLER
      ENDTRY.
    *--E-mail recipent list
      t_reclist-rec_type = 'U'.
      t_reclist-receiver = <email Id here>.
      APPEND t_reclist.
      CLEAR t_reclist.
      LOOP AT t_reclist.
        CLEAR v_mailid.
        v_mailid = t_reclist-receiver.
    *--Create mail recipient object.
        TRY.
          v_recipient = cl_cam_address_bcs=>create_internet_address( v_mailid ). "#EC .., bzw.
           CATCH cx_address_bcs . "#EC NO_HANDLER
          ENDTRY.
    *--Add recipient object to send request.
        TRY.
            v_send_request->add_recipient( v_recipient ).     "#EC .., bzw.
          CATCH cx_send_req_bcs . "#EC NO_HANDLER
        ENDTRY.
      ENDLOOP.
    **--Add recipient object to send request.
      TRY.
        v_sent_to_all = v_send_request->send( i_with_error_screen = 'X' ).
    CATCH cx_send_req_bcs . "#EC NO_HANDLER
      ENDTRY.
    *--Send document.
      COMMIT WORK.
      IF sy-subrc = 0.
       MESSAGE s999(zou01) WITH text-020.
        v_sent = 'X'.
      ENDIF.

    I realize this is an old post, but am wondering if you ever resolved this.  I'm having the same issue.  Download an xlsx file locally opens fine, but attaching the seemingly exact same file throw errors/warnings when trying to open via an email attachment.

  • Email functions - formatting options, PDF attachme...

    I was typing an email and liked the autocorrect function, auto spacing...
    BUT there are no text formatting options whatsoever??
    There is no undo button??
    There is no attachment capability..only pics.?? No PDF, word, excel??
    Moderator's note: We have provided a subject-related title to help other forum users easily view and respond to this post.

    Sorry I ain't done yet. My trigger happy go lucky phone send the message at a flash. I tried to work around the none formatting issue using the word in the office but as I could not get it to work as expected within reasonable amount of time and number of tries I gave up. If you format a phrase and copy it it just copies the last format and ignores the copied formatting. Plus how do you make the f. Keyboard go away easily? Why internet has no forward arrow, only back! Is this some kind of joke? Why when texting can't you move back and forth with arrows, just the stupid cursor. NO undo function????? Elementary mr Watson, elementary. +You have to be an oracle to guess when an app will close when u hit the back arrow rather than go back!! Apps must not close like that. Pretty disheartening. Pretty pretty for a good looking phone like this.
    And to be honest I am not going to buy a new phone for another three to four years come hell. Unless wify breaks my old one she uses now and I give her the brick.
    Moderator's note: We have provided a subject-related title to help other forum users easily view and respond to this post.

  • Crystal for VS 2010 - formatting issues in viewer (extra space) again

    We're having the same problem as the one in this thread link:[Crystal 2008 for VS 2010 - Report formatting issues in viewer (extra space);. There's no resolution in the thread and it's been closed. I'm hoping that creating a new thread may cause someone to answer this problem.
    We have a Windows App that we just converted to .NET 4.0 and updated the viewer to the Crystal Reports Viewer in VS 2010. When we open a report that has a large block of static text in paragraphs left-aligned the spacing around punctuation is awful - there's almost a tab's worth of space between the last letter and the period. U.S. looks like US. This happens both with reports that were created in VS2008 and ones that were created in VS2010. It is only a problem in the viewer's display - if we print to a printer or export to PDF the spacing around punctuation is fine. It's also not a problem on our development workstations which are running Windows 7, but is a problem on our test servers which are running Windows 2003 Server. I ran the modules tool and found that the version of usp10.dll does match what the previous thread said it should be and it's coming from the c:\program files\sap businessobjects\crystal reports for .net framework 4.0\common\sap businessobjects enterprise xi 4.0\win32_x86\ folder. On my development machine when I run the modules tool I notice that a second instance of usp10.dll is called which is the version installed with Windows 7. We've tried changing fonts but none of the ones we've tried (originally in Times New Roman, 12, tried Arial, Times and various sizes) have made a difference. We also tried changing the print options with no improvement. The only thing that makes it slightly better is full-alignment but our customer insists that it be left-aligned.

    Re. the other thread. I never did receive a sample of the report to test with. Perhaps I can get one from you? I need you to ensure that the issue occurs with a "saved data" report. If it does, let me know if you can share it and I'll contact you via email. My comment in the other thread re. available time, priorities, etc., still applies. Also, just to be clear. Service Pack 2 for CRVS2010 is closed now. Thus if I am able to reproduce the issue the fix will be targeted for October \ November time frame - no guarantees though...
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • How to resolve formatting issue when eprint from an iPad to Officejet 4500

    Just activated the eprint app on my IPad. It found my HP Officejet 4500 Wireless printer but the formatting is wrong when printing an email. Is there a solution?

    Do you maybe have a photo of the formatting issue you could post here? Thanks, Ciara
    http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile-Printing-and-ePrintCenter/Printing-photos-from...
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • The .txt file has formatting issues that need to be resolved

    Transaction ZEHS20 runs a program that assigns a CCL Group to a specification header, based on its Active Ingredients. The transaction can be run in the background if desired with output being emailed to the user.The .txt file has formatting issues that need to be resolved. can u  pls Help me to resolve this issue.
    Thanks

    What is the formatting issue like? Could you please elaborate a bit more.
    If it is because of varying lengths in the data then it can be handled by utilising a CONCATENATE RESPECTING blanks.

  • Format issue causing iBook navigation problems

    Hello!
    I created an iBook for a client, but some of the default functions of an iBook aren’t working when it’s previewed on iPad. My question is: since the file format seems to be the issue, what can be done to alleviate it?
    Problems
    When previewing the iBook on the iPad...
    Framing features such as navigation bar, book info, bookmark tool, etc. are missing
    The pages lack animated page turns
    Right and left page edge riffles are missing
    When the iPad is turned vertically…
    Pages scroll top to bottom instead of left to right as they should
    All images disappear
    Basically, the iBooks works mostly well in landscape mode but not so much in portrait mode. The client checked other iBooks to compare and the iBook I created is the only one with problems with the interface functions.
    Steps Taken To Save & Preview File
    Saved the iBook file as an IBA file. I also Exported it as an iBooks file.
    Sent IBA and iBooks files to the client to preview on his iPad (I don’t have one so I can’t preview it myself).
    The client opened the IBA file using iBooks Author then clicked the “Preview” button.
    The IBA file cross-loads to the iPad and the problems can be seen.
    The client also attempted to load the IBA and iBooks files on the Book Proofer application (this application does accept IBA and iBooks files), but that didn't work either. The client told me that are some file format issues unrelated to content, leading me to believe that it's a format issue.
    Technical Specifications
    iBook Author version I used to create iBook
    1.1 (the latest)
    iBooks version client used to preview iBook
    iBooks version 2.1.1 (April 16, 2012 release)
    iPad version the iBook is being previewed on
    1st Generation 64GB iPad
    File being used to preview on iPad
    The IBA and iBooks files for the iBook
    Could it be file format incompatibilities? Has anyone had this issue before? I hope the information I provided is useful. Any insight about these issues is greatly appreciated!
    Thanks,
    Catrina

    Again, sorry, a 'Shared' .ibooks file has the same format as what users download from the store.
    You don't need to be in the store to circulate that file. 'private' as defined depends on you. Email that file if possible and/or put it on your own server/dropbox and share the link to trusted individuals.
    If you're sending the .iba file to someone that then uses it in iBA, they need to use the 'Shared' menu to generate an .ibooks file, then drop that into iTunes and sync to their device.
    See iBooks Author: Publishing and distribution FAQ - Support

  • Forcing a reply format

    Hi everyone
    I was wandering if there is a way to have a part of the body of a message to be auto-generated for the receipent of my e-mail as such as he would only need to fill in the blank?
    As an example, I would send a welcoming message to my new employe and when I come to reply it automaticly hads the text " Good day Francis" at the beginning of his message.
    I know there might be some compatibility issue if there is different different version of outlook used but at first I was looking to know if such an option existed

    Hi friend,
    You can create your own Outlook template and can apply a rule on it for auto reply. It helps you to generate pre-written text (as you said
    “Good Day Francis”)
    in Outlook email reply for your recipients.
    In a template, you can add images, contacts, company logo, etc., which makes it more attractive and useful.
    Follow this link to learn “How to create
    automatic reply in Outlook”:
    http://www.addintools.com/documents/outlook/howto-out-of-office.html
    Thanks
    Clark kent

  • Setting default for Email Reply text colour

    Hello, Can anyone tell me how to change the default colour for my signature and email replies from BLUE to BLACK?Currently, I only see the option to 'format' each individual email reply.  I don't know why the default colour for the text and the signature is BLUE but I would really like to change it to BLACK.  Any help would be appreciated. Thanks,interloper1969

    Don't know how I overlooked this before but the following is the expected result
    Composing a new email, black text
    Reply or forward to a email, blue text
    These cannot be changed so I'll share your feedback internally for future consideration
    Thanks!
    Ty

  • Query about Email Address Format & PDF Output

    I'm using XML Publisher and an RTF word template linked to an Oracle XML file to generate PDF Purchase Orders.
    Part of the PDF output displays an email address.
    If the email address is in this format:
    [email protected]
    then when the PDF output is generated, the address is outputted into a clickable hyperlink which sends an email to:
    [email protected]
    However, if the email address is set to:
    [email protected]
    then the resulting email hyperlink will only be sent to:
    [email protected] (i.e. all to the right of the dot)...
    Just wondered if there is any way to stop this from happening?
    Thank you

    Sorry - I know months have passed since I first raised this query.
    Just double checking again, to see if anyone is aware of a workaround for this email issue? Is there anything I can do in the XSL in the background to force a particular email hyperlink format?
    Thank you

  • New format issues

    Hi,
    I guess these might be issues with incomplete migration to the new format but I'll post them here nevertheless:
    Incorrect post count - The "total number of posts" in the user information seems to reflect the total number of posts online at the time of the transition instead of total number of posts to date
    Joined date changed - the "date joined" in the user info seems to have changed for me - no biggy but this might point to other problems
    Incorrect migration of old formats - the old discussions had the editor shortcuts "ii " at the beginning of a new line to create italic text - all these post now display "i " at the start of such lines (with the text not being in bold)
    Level info missing - according to the help file, a user should be able to see his/her level per topic as well as overall - I was not able to find this information at all
    But then, I am happy to see that you are keeping to make improvements to this forum and I thank all of you for your work - I am especially happy about the new "Preview" button for new messages!
    Andreas

    Another items is:
    Email Notification do not use subject of topic -
    In old system the email notifications showed for example "New Formatting issues", or "Re: New Formatting issues". On new system email notifications so as example:"Apple Discussions forum "Feedback about New Discussions" has been updated by Andreas Amann", or "Apple Discussions forum "Feedback about New Discussions" has been updated by John Smith", and so on. Makes it impossible to thread post by topics because all notifications only change if the post is from another group.

  • My email "reply" doesn't load. I can reply to my emails fine in other browsers.

    I have a laptop pc. Web pages load okay. My email server loads okay. I can read my emails fine. However, when I attempt to reply to any email, the loading of the reply page does not complete. I cannot reply to my emails in your browser. When I use a different browser, my email reply function work perfectly.
    Thank you for any help in resolving this.

    Clear the Cache<BR>
    '''''Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"'''''<BR><BR>
    and<BR><BR>
    Remove Cookies<BR>'''''Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"'''''<BR><BR>
    If there is still a problem,
    '''''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]'''''
    <BR>While you are in safe mode;<BR>
    '''''Firefox Options > Advanced > General'''''.<BR>
    Look for and turn off '''Use Hardware Acceleration'''. Then restart.

  • SSHR Email Notification Format (Template)

    Hello,
    We are receiving the workflow notifications as email which works fine. We want all the users to receive HTML emails. By default the system send the notification page as-is to the email. The format of the email received is messed up due to the css/js issues within the email client. Is there any way we can modify the template of the email being sent by the SSHR system. We want to first remove the top banner and then also remove the table heading - both of which is giving formatting issues.
    Any heads up appreciated    

    I had not even noticed this, BUT... I keep e-mail notification OFF, as I follow any thread that I am interested in, in the forums, and do not need any more e-mail. The only thing ON, is an e-mail notification on PM's, as I do not normally look there. All forum activity is OFF.
    Now, getting the notifications in the new Jive, was a surprise, but a few clicks, and all was turned OFF again. Too bad that the new Jive could not use our Preferences there, but other than cleaning out my In-box, and changing those Preferences, it was not big deal - just a bit of a surprise.
    I think that Phillip has the right idea, and will just trust him, as I do not plan on turning things on, just to check.
    Hunt

Maybe you are looking for

  • How do I restore the address bar at the top of my window in firefox on a mac?

    My kids were messing with my computer and must have pushed something and everything disappeared. I need to know how to put an address bar (back button, refresh, ect) back up into the top of my window. Part of the problem is that my computer screen is

  • Intro to UltraSPARC Architecture 2005

    (this posting is cross-posted in my blog, http://blogs.sun.com/roller/page/dweaver) Not only is the OpenSPARC T1 processor the first open-sourced 64-bit processor implementation, but it (and its twin, UltraSPARC T1/Niagara) are the first processors t

  • [SOLVED] Wireless drops out

    Hey there, I have been getting weird problems with my wireless dropping in and out every say 30 secs. I recently did a global update so I am thinking something may have broken. I also use wicd to manage my wireless connection. Also there is no proble

  • Opening Balance Account

    Hi Experts, I have a doubt regarding entering Opening balances for Business Partner, G/L and Item Master. I created 3 different opening balance accounts in Equity Drawer for Business Partner, G/L and Item Master. After entering opening balance, when

  • Sourcing cockpit field should be greyed out

    Hi,    In Sourcing Cockpit, the purchase Org and Purchase Group field should be Greyed out in "Find" tab... How can we achieve this.?? Is there any BAdi availbe??? thanks........