Bold text in mail subject

Hi All,
I want subject of mail  in bold text while sending mail from SAP.My mail send  in currently in RAW format .
Please help.
Thanks
Mohit

chk this thread.
Making text in SM30 record bold

Similar Messages

  • Can't get rid of Bold Text in Mail

    All my text is in Bold in my Apple Mail. Only headers are normal.
    There must be a keystroke for it. Can anyone help?
    Thanks
    Kevin

    You're welcome.

  • Emails appear in bold text (subject and body)

    A few days after installing OS X Yosemite on my iMac, all of my Comcast emails appear in bold text (subject and body text). This makes it difficult to distinguish unread email from read email.  I view email directly through the Comcast website (NOT with Outlook or Mail). This issue happens in Firefox and Safari. My email looks normal on other devices. I am working with Comcast to try to resolve the issue, but since it started a few days after upgrading to Yosemite, I thought I'd check here too.

    Try to set the Boolean pref <b>gfx.font_rendering.directwrite.use_gdi_table_loading</b> to <i>false</i> on the <b>about:config</b> page.
    *http://kb.mozillazine.org/about:config
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    Try to disable hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"

  • Change mail subject and body text

    Hi all,
    i activated access method M in tr. SPAD and via this method i'm sending various reports in PDF to external e-mails. But when recepitiens recive e-mail i have subject of e-mail composed of SYSTEM ID and SPOOL NUMBER (e.g. R3P-12345) and i also have defaulted mail body text :
    The Mail Attachment Contains the Print File Created by User XXXXX , with Number xxxx from SAP System R3P .
    To Print the Data, Open the Mail Attachment with a Suitable Program and Print the Document.
    How can i change mail subject and body text?
    Regards,
    PS*

    For the output type Maintian the Mail body and subject.
    You can do this at NACE==>Output Type ==> Mail title and texts
    rgds,
    TM
    See the link
    http://www.geocities.com/rmtiwari/main.html?http://www.geocities.com/rmtiwari/Resources/MySolutions/Dev/UtilityCode.html
    Message was edited by: Thomas Mann

  • Mail subject line question

    Is it possible to change the subject line text in Mail to bold font?

    Do you mean in messages you receive? Use the Fonts preferences tab in Mail's preferences. How the subject is displayed to the recipient in messages you send is under the control of their mail client.
    AK

  • Selective BOLD text in table

    Hi guys,
    I have report on Service Request Active reporting subject area. Standard table view with one additional column with custom text displayed using CASE...WHEN logic. This works perfectly fine.
    What I need is to display the values being pulled to be displayed in BOLD (not the whole field just selective text). for this under column properties in Data Format tab i selected HTML and tried using <bold>text/column formula</bold> or <b'>text/column formula</b"'> or ['b]text[b'] (added a couple of ' here in the post to remove the forum's formatting) but nothing seems to work out. Can someone point out where to place the bold tags and the format so that i can get this working
    *sample logic statement*
    CASE
    WHEN "- Service Request Custom Attributes".PICK_16 = 'Tier 3 Integration'
    THEN 'Issue 1 = ' || "- Service Request Custom Attributes".PICK_16 || ',<br> ' || 'Issue Owner = '|| IFNULL ("- Service Request Custom Attributes".PICK_20, 'NO OWNER ASSIGNED')
    WHEN "- Service Request Custom Attributes".PICK_17 =
    ELSE 'NULL'
    END
    thanks
    Gaurav
    Edited by: Gaurav Shah on Mar 4, 2011 6:56 PM

    How would I use conditional formatting?
    Let's say I've given the field a custom heading of Issue - Owner (combination of values from 2 separate fields based on certain CASE logic). I go to the Properties>Conditional Format tab> I click on Add Condition and it shows the list of columns. I select Issue - Owner. It throws up the combined values as possible answers which would be incorrect.
    The 2 columns used to combine this are not used in the report, so i cannot use that to filter and if i do add those columns then also i do not get the correct filter settings.
    I have a complete sentece displayed in that column - part of it is static text that i have entered and part of it is the column formula which displays various picklist values based on the logic.
    I need some words of the static text and some of the formula highlighted.
    for e.g. this is displayed in the column
    The Issue 1 is Integration and Issue Owner is John Doe
    Issue 1 is static text while John Doe is value returned based on CASE logic
    I need 2 separate types of data displaed in bold

  • Purchase order by e-mail: changing the e-mail subject

    Hello all,
    We are sending are purchase orders to the vendors by e-mail.
    I would like to know how can I change the e-mail subject to a subject of my choice (for instance the PO number, etc.).
    Thanks for your help,
    Sivan

    Hi,
    You can  change the e-mail subject to a subject of your choice by following way.
    If you want to send a purchase order as (external) mail, for example, to a
    vendor, you have to maintain the mail title in the condition record for the
    output type (for example in Transaction MN05) on the 'Communication method' tab
    page. Enter the mail title in the 'Text for cover page' field. You cannot
    maintain an additional mail text.
    Hope this will help u,
    Deepak

  • Hw to write text in mail body in UTL SMTP in oracle

    hi all
    i m using oracle demo mail package to send csv file as attachment to different users its successfull and i can also able to attach text file to it
    but i m unable to write any text in mail body .
    e.g.
    mail body can be--
    hi
    This is test mail.
    Regds
    Sender.
    can anyone suggest some way?

    u can try this code
    this code takes the file from database and attach with mail and also send the body with it
    it works fine.
    CREATE OR REPLACE
    procedure pdf_mail(
    p_sender varchar2, -- sender, example: 'Me '
    p_recipients varchar2, -- recipients, example: 'Someone '
    p_subject varchar2, -- subject
    p_text long, -- text
    p_case_id number,
    p_email_log_id number
    -- p_filename varchar2, -- name of pdf file
    p_blob   blob     pdf file
    ) is
    conn utl_smtp.connection;
    i number;
    len number;
    p_message_part varchar2(32767);
    cursor c1 is
    select file_name,document_pic
    from clm_case_attachments ca,email_log_detail em
    where
    case_id = p_case_id
    and ca.CASE_ATTACHMENT_ID = em.ATTACHMENT_ID
    and em.ACTIVE = 'Y'
    and em.EMAIL_LOG_ID = p_email_log_id;
    BEGIN
    conn := demo_mail.begin_mail(
    sender => p_sender,
    recipients => p_recipients,
    subject => p_subject,
    mime_type => demo_mail.MULTIPART_MIME_TYPE);
    demo_mail.attach_text(
    conn => conn,
    data => p_text,
    mime_type => 'text/html');
    for lp in c1 loop
    demo_mail.begin_attachment(
    conn => conn,
    mime_type => 'application/pdf',
    inline => TRUE,
    filename => lp.file_name,
    transfer_enc => 'base64');
    -- split the Base64 encoded attachment into multiple lines
    i := 1;
    len := DBMS_LOB.getLength(lp.document_pic);
    WHILE (i < len) LOOP
    IF(i + demo_mail.MAX_BASE64_LINE_WIDTH < len)THEN
    UTL_SMTP.Write_Raw_Data (conn
    , UTL_ENCODE.Base64_Encode(
    DBMS_LOB.Substr(lp.document_pic, demo_mail.MAX_BASE64_LINE_WIDTH, i)));
    ELSE
    UTL_SMTP.Write_Raw_Data (conn
    , UTL_ENCODE.Base64_Encode(
    DBMS_LOB.Substr(lp.document_pic, (len - i)+1, i)));
    END IF;
    UTL_SMTP.Write_Data(conn, UTL_TCP.CRLF);
    i := i + demo_mail.MAX_BASE64_LINE_WIDTH;
    END LOOP;
    demo_mail.end_attachment(conn => conn);
    end loop;
    demo_mail.end_mail( conn => conn );
    END;
    /

  • Alert management with custom mail subject

    Hello,
    I defined a business process, with a control step that throws an alert with a specific message "Error in &MessageTypeFound& " ( &MessageTypeFound& being a container element filled in in a previous step ).
    When I look at the e-mail that the alert manager sent, I can see the alert, with the variable properly filled in, so the result in the mail-body is: "Error in WMMBXY".
    Now, as a mail subject, I want the same message. In the Alert Category Definitions, I need to fill in the title and this will be used as mail subject.
    To be able to use variables in this title, I need to define container elements in the alert category definition. How can I pass the Business Process variable ( &MessageTypeFound& ) to this container for the alert definition ? (So I can use this container element for my dynamic variable in the subject of the alert mail)
    Any ideas are welcome !
    Thanks

    Hi Frederik,
    Unfortunately the functionality you want is simply not available ... or well it is but its not implemented very good by SAP.
    The workflow step that generates an alert does has a container element 'SHORTTEXT' which can hold placeholders and which is translated into the title of the alert message/mail.
    However, the field is defaulted with the text 'Process &_WORKITEM.WORKITEMID&' when being executed via BPM ...
    I tried to overwrite it by setting my own 'SHORTTEXT'container element within the BPM but that does not work ...
    Regards,
    Steven
    ( Tried everything on SP14 ... maybe something changed in SP15 ... )

  • E-mail subject (in action)

    hello All.
    I have an action in billing. That action is a e-mail and use a form (smartform) to generate an invoice (pdf).
    When the system sends the e-mail, its sends only the pdf. I need change de subject of e-mail because now the subject of the e-mail is the name of the form (Z_INVOICE) and I want a diferent subject. Aditionally, i want to send some text in the e-mail body.
    Does anybody know how to do this?.
    Thanks very much for your cooperation.
    Mauricio.

    Thanks venkata Raja Sundaragiri.
    I have the text that I need attach in the e-mail, but i have not been able to put it in the e-mail body and the e-mail subject. How can I do?
    Is there a variable or something like that in the Smartforms to do this?
    I have some kind of action or processing method that i have to customize or can i use the same action to do both things (send email in pdf and attach the body and the subject)??
    Thanks again,
    Mauricio

  • How do I edit the font and bold text in the message box in adobe send before sending to client?

    How do I edit the font and bold text in the message box in adobe send before sending to client?

    Hi BRAEWOOD DEVELOPMENTS,
    You can edit the Subject & Message when you've selected Send Personalized Invitations (though you can't change the font or style of the text).
    Best,
    Sara

  • Chinese problem in Java Mail "Subject"

              I got a problem in displaying the Chinese mail subject as described below
              1. here is the code
              Message msg = new MimeMessage(session);
              msg.setFrom(new InternetAddress(from));
              msg.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
              msg.setSubject(subject);
              msg.setSentDate(new Date());
              msg.setContent(content, "text/plain");
              Transport.send(msg);
              2. My env is
              Windows 2000
              weblogic 7
              3. My problem is
              the chinese character in the mail context is OK but the subject in the mail is
              like this "?????"
              Can someone give me the clue ? Thanks a lots
              

    You need to be identified by stmp server :
    // Send message with authentication!
    Transport tr = session.getTransport("smtp");
    tr.connect(MailHost, user, pass);
    message.saveChanges(); // don't forget this
    tr.sendMessage(message, message.getAllRecipients());
    tr.close();
    Read JavaMail Faq please!

  • Bold, Colors in mail - Urgent

    Hi all,
    I am using a function mod for mail alert. The  user wants cretain names as BOLD & Colors in the text.
    Is there any function mod which sends the mail with BOLD, COLORS & any other options?
    Pls urgent.
    Thanks in advance.
    Vijay

    Vijay,
    Interesting , It will work with my below code. If you don'nt want an attachment then just remove it from this program..
    Believe this will solve your problem.
    Cheers,
    Thomas.
    REPORT test.
    DATA: att_size TYPE i,        " att Size
          att_itab_size TYPE i,   " Attachment size
          mailtxt_size TYPE i.    " Text in mail size
    DATA:
    it_mailpack LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE, " Dist details
    it_mailhead LIKE solisti1   OCCURS  1 WITH HEADER LINE," Header data
    it_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE,   " Rec List
    it_mailtxt LIKE solisti1 OCCURS 0 WITH HEADER LINE,    " Mail Text
    it_att_data LIKE solisti1 OCCURS 0 WITH HEADER LINE,   " Attachment data
    it_doc_att LIKE sodocchgi1.                          " Attri of new doc
    * Text in the mail.
    it_mailtxt-line  =
    '<BODY BGCOLOR="#FFFFCC">' &
    '<B> This is a test mail,  Line Number--1</B><BR>'
    APPEND it_mailtxt.
    it_mailtxt-line = '<I> This is a test mail,  Line Number--2' &
                      ' This is a test mail,  Line Number--2</I><BR>'.
    APPEND it_mailtxt.
    it_mailtxt-line = '<U> This is a test mail,  Line Number--3' &
                      ' This is a test mail,  Line Number--3' &
                      ' This is a test mail,  Line Number--3</U>'.
    APPEND it_mailtxt.
    DESCRIBE TABLE it_mailtxt LINES mailtxt_size.
    * Create the att File
    concatenate '<BODY><B>Attachment Line Number 1</B><BR>' space into
    it_att_data-line.
    APPEND it_att_data.
    concatenate '<I>Attachment Line Number 2</I><BR>' space into
    it_att_data-line.
    APPEND it_att_data.
    concatenate '<U>Attachment Line Number 3</U>' space into
    it_att_data-line.
    APPEND it_att_data.
    DESCRIBE TABLE it_att_data LINES att_itab_size.
    * Attributes of new doc
    CONCATENATE 'Attach' space 'mail'
                INTO it_doc_att-obj_descr SEPARATED BY space.
    it_doc_att-sensitivty = 'F'.
    it_doc_att-doc_size   = mailtxt_size * 255.
    * Create Pack to text in mail body.
    it_mailpack-transf_bin   = space.
    it_mailpack-head_start   = 1.
    it_mailpack-head_num     = 0.
    it_mailpack-body_start   = 1.
    it_mailpack-body_num     = mailtxt_size.
    it_mailpack-doc_type     = 'HTM'.
    APPEND it_mailpack.
    * Create Pack for Attach.
    it_mailpack-transf_bin   = 'X'.
    it_mailpack-head_start   = 1.
    it_mailpack-head_num     = 1.
    it_mailpack-body_start   = 1.
    it_mailpack-body_num     = att_itab_size.
    it_mailpack-doc_type     = 'HTM'.
    CONCATENATE 'My' space 'Attachment' INTO it_mailpack-obj_descr.
    it_mailpack-doc_size     = att_itab_size * 255.
    APPEND it_mailpack.
    it_reclist-receiver   = '[email protected]'.
    it_reclist-express    = 'X'.
    it_reclist-rec_type   = 'U'.
    *it_reclist-notif_del  = 'X'. " request delivery notification
    APPEND it_reclist.
    * Call FM to send email
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
         EXPORTING
              document_data              = it_doc_att
              put_in_outbox              = 'X'
         TABLES
              packing_list               = it_mailpack
              object_header              = it_mailhead
              contents_txt               = it_mailtxt
              contents_bin               = it_att_data
              receivers                  = it_reclist
         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.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.

  • Setting Mail Subject and Body

    Hi,
    I have configured sending a mail with PDF attachment for Invoices in NACE. the program is RLB_INVOICE The mail goes fine with the PDF attachment to external mail address.
    Now I need put subject and Body for the email.
    There are 2 issues now.
    1. In transaction NACE i am using "Mail title and texts" node when i fill the Document title, the same document title appears for the e-mail subject as well as the name of the attachment. But i need different names for the subject and attachment and the invoice number must be present in the subject.
    2. Under the "Text" tab when i maintain some texts, this doesn't appear anywhere in the mail.
    How do i maintain Subject and Body for the e-mail.
    Regards
    Rajvansh

    Hi
    Keep break point at SO_OBJECT_SEND.
    In the first screen
    VF01 / VF02  ->
    Set the Output type not to process immediately, use custom own transaction.
    Save and come out of transaction.
    And again
    VF01/ VF02 ->
    Issue Output type select the Output with medium 5.
    and click on the OK button.
    It should stop.
    To pass value from driver program to Enhancement point.
    I used FIELD SYMBOLS.
    Since i am offline, i do not have exact syntax.
    It will be something like this
    FIELD SYMBOLS : <OUTPUTTYPE> type any.
    ASSIGN '( PROGRAMNAME(FIELD NAME)) TO <OUTPUTTYPE>
    IF <OUTPUTTYPE> IS ASSIGNED.
    ENDIF.
    Or
    If it is custom driver program, you can use memory ID's also
    Regards
    MD

  • Mail subject field

    When I enter some text in the body before in the subject field, the subject field is listed as blank in the mailbox list of messages. Similarly, when I enter text in the subject field first, move onto body text and then return to the subject field, the mailbox display sticks with the original subject field text. This did not happen prior to Yosemite.

    Problem solved!
    Tried pasting from the Menu Bar and the right-click/menu and both worked! Interesting!
    On closer observation of the Edit menu in the Menubar, I discovered that the Commond key icon and V were not displayed to the right of the word Paste. All the other shortcut icons were there... I also noticed that further down in the menu there was a greyed out option: Paste and Match Style.
    Armed with this knowledge I went to System Prefs and started searching in Keyboard/Shortcuts. In App Shortcuts Paste and Match Style was listed as Command V. I deleted it, and now Paste functions as it should.
    I believe I am to blame for this as I vaguely recall creating the Paste and Match shortcut quite some time ago after reading about the "advantages" of using it. Of course, at the time, it seemed to work fine. I simply failed to make the connection to that custom shortcut when the problem with pasting started in Mail.

Maybe you are looking for

  • Printing concerning an older HP LaserJet 5000.

    We're a design studio with 4 Mac's and have this HP printer for a longtime and love it. A real work horse and low maintenance. Two of our cpu's are running Mavericks, 2 are running 10.7.5 and the older one is still running 10.5.8. This older 10.5.8 c

  • Trading Partner Summary Report not getting genrated in PDF

    Hi all We are running EBS r12 on solaris 5.10 machine. Problem is there is a report called "Trading Partner Summary Report" it is getting completed successfully but when i try to c the output it says File does not begin with '%PDF-', Please help Rega

  • Oracle SQL and ANSI

    Hi, Do you know if the extensions of Oracle SQL - DML error logging - model clause - pivot clause are supported by ANSI SQL (or other RDBMS) ? Thanks for your help

  • FI_AP_04

    Does anyone know which table the standard SAP extractor: FI_AP_04 pulls from (other than BSIK and BSAK)? Thanks!

  • Explain How delivery date is calculated using backward and forward schedul

    How can anyone please explain how delivery date is calculated using forward and backward scheduling I want to have it broken down into the following steps for eg for delivery date calculation following dates are used Material Availabilty Date Materia