How to add HTML tags to 'mailto' body

i'm trying to figure out how to add font color and bold to an
email body.
i have the code working properly to build the email and drop
the text in the correct locations. however, when i try to add the
html tags to the process, it doesn't work.
when i use the escape command to URLencode the input, it goes
through and you can read the html tags in the email. if i don't
escape the text/tags, the mailto command fails completely.
dual 2.5 g5, 10.4.8, 3gig ram, plenty storage
flash 8pro. ripping flash8 swf, actionscripting 2.0
here's my current code:
emailto =
escape("[email protected],[email protected]");
emailsub = escape("REQUEST - order");
tempemailbody = "<B><FONT COLOR=\"#2B6EB5\">" +
header + "</FONT></B>other text = " + somethingelse +
"<br>";
emailbody = escape(tempemailbody);
emailvar = "mailto:" + emailto + "?subject=" + emailsub +
"&body=" + emailbody;
getURL(emailvar, "_blank");
please advise.
thanks in advance
jason
ps. i tried adding this post twice and it didn't appear in
the topic list. sorry if the previous ones eventually go thru

You can't send HTML email right from Flash. You will need to
use a
server-side script that adds the necessary headers into the
email.
Dave -
Head Developer
www.blurredistinction.com
Adobe Community Expert
http://www.adobe.com/communities/experts/

Similar Messages

  • How to add html tags to textarea item

    hello,
    i want to have links or bottons that will put html tags in my textarea item
    for example if i will press a link name bold it will put the bold open and close html tag.
    i want to be able doing so without erasing the already text i have in my textarea item.
    thanks
    p.s
    i can't use the textarea with html editor item.

    thanks it works ( still have one more question)
    i used Balaji Chellappa suggestion
    but change it a little bit :
    a href="#" onclick="javascript:document.getElementById('P3_MESSAGE_DESC').value=document.getElementById('P3_MESSAGE_DESC').value + ' B> /B>';">Bold /a>
    one more question:
    this javascript add the bold tag to the end of the textarea item.
    how can i add it the tag where the cursor is ?
    if it's to hard (i'm not javascript expert) i just want to add the tag a line under the text
    for example:
    if my test is : test test test
    and i push the bold link it will be:
    test test test
    b> /b>
    instead of :
    test test test b> /b>
    thanks
    p.s
    how can i put html tag in my posts ?

  • How to add html tag in c:set value

    If i put the html tag around, like this <c:set var="test" value="This is a <b>nice</b> page." /> , the <c:out value="${test}" /> will print the bold tag around "nice" . How to get the actually string "nice" to be bold instead? Thank you!

    Set the 'escapeXml' attribute of c:out to false so that it doesn't escape XML (and so also HTML) entities.

  • How to use HTML Tags in webdynpro java

    Hi,
         Can any body tell me how to use HTML Tags in webdynpro java.
    If u provide me with sample code it will become more usefull.
    Thanks & Regards,
    SN

    HI,
    Please find the steps:
    Create a html file and store in your webdynpro project
    Add the html contents in your file
    & Create a IFRAME UI element and refer you html file
    Now you able to see the html in webdynpro
    Thanks & Regards,
    Ram

  • How to use html tags inside java

    I have to retrieve data from db and return the data to my index.jsp page.
    Its working fine.
    But I have o display in a pable format using html. How to embed html tags? I tried this way. Its not working. Any suggestions?
       String htmlOpen = "<html>";
        String htmlEnd = "</html>";
        String titleOpen ="<title>";
        String titleEnd ="</title>";
        String bodyOpen = "<body>";
        String bodyEnd = "</body>";
        for (int i = 1; i <= cols;i++){
            output = output + rsmd.getColumnName(i);
         while (rst.next()) {
            for (int i = 1; i <= cols;i++){
                      output = output +rst.getString(i);
      result = htmlOpen + titleOpen + titleEnd + bodyOpen + output+ bodyEnd + htmlEnd;
        stmt.close();
        conn.close();
         return htmlOpen;
      }

    See those charcters in your JSP that look like "<%"? Those characters mean: "the code after this is Java - interpret it as such".
    Then when you close your Java block with "%>", it then means: "the code after this is html - output it to the request response that is being built. However, within the html code, the syntax "<%= java_variable_name %>" means "take the current value of that Java variable and insert it into the html output".
    Here's an example:
    %>
    <table cellspacing="2" cellpadding="2" border="1">
    <tr>
    <%
        String s = null;
        for (int i = 1; i <= ncol; i++)
          s = rsmd.getColumnName(i);
    %>
      <th nowrap><A HREF="<%=sortLink.toString()%>&sortby=<%=s%>"><%= s %></th>
    <%
    %>
    </tr>
    <%
        if (rs == null || numRows <= 0)
          %><tr><td colspan="10" nowrap>No data available for specified query.</td></td><%
        else
          int rowCounter = 0;
          while(rs.next() && rowCounter < PAGE_SIZE)
            rowCounter++;
    %>
      <tr><%
            for (int i = 1; i <= ncol; i++)
              s = rs.getString(i);
              if (rsmd.getColumnName(i).equalsIgnoreCase("password"))
                    %><td nowrap>********</td>
    <%
              else
                %><td nowrap><%= s %></td>
    <%
            %></tr><%
    %>
    </table>This is JSP 101, what they teach in the first hour of class...
    Here's a decent JSP tutorial:
    http://www.jsptut.com/

  • How to aviod html tags from Report column heading while export to csv

    Hi All,
    How to aviod html tags from Report column heading while export to excel.
    We used like Employee<br> Department in column heading, but the problem is the <br> tag also exporting into csv file.
    If any column data 3/2009 formatt the it will exporting as marh 2009.
    Please help on this.
    Thanks,
    Nr
    Edited by: pnr on Jul 5, 2011 5:00 AM

    Hi Nr
    Here is how I approached this problem.
    Go to report attributes tab
    under column attributes check PLSQL radio button.
    Create a function to return the heading of your report as shown below in your database.
    create function get_heading return clob as
    v_request VARCHAR2(20) := V('REQUEST');
    v_col_heading CLOB;
    begin
    IF INSTR(v_request,'FLOW_EXCEL_OUTPUT',1) > 0 THEN
    v_col_heading := 'Employee Number:Employee Name';
    ELSE
    v_col_heading := 'Employee breaktag Number:Employee break tag Name';
    END IF;
    return v_col_heading;
    end;
    Type the function below under ( Function returning colon delimited headings:) as follows.
    return get_heading;
    Similarly for data base it on PLSQL function body returning SQL and follow the same approach as headings.
    Hope this helps.
    Thanks
    Sukarna
    Edited by: user513776 on Jul 5, 2011 2:24 PM
    Edited by: user513776 on Jul 5, 2011 2:27 PM

  • How to use HTML Tags in Smartforms

    Hi,
    Can you please help me out in knowing how to use HTML tags in Smartforms,
    suppose i want to display some text in BOLD i should use the tag </b> as shown
    </b>  Header Information <b>
    regards
    Ranveer

    Hi Ranveer ,
        check this following links,
      hope this wil helps you
    <a href="http://sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap%20code%20samples/smartforms/smartform%20in%20abap.pdf">check this link,to know abt HTML in smartforms</a>
    rgds,
    shan

  • XML editor with buttons to add HTML tags via CDATA

    Hi:
    Does anyone know an XML editor with buttons to add HTML tags via CDATA?
    <?xml version="1.0" encoding="UTF-8"?>
    <content1>
    <text1>
    <![CDATA[<p><b>]]>THE ORIGINS.<![CDATA[</b><br />]]>
    He was born ...
    <![CDATA[<br /><br /><p>]]>
    Thanks in advance

    I just did a google search of "XML editor with buttons to add HTML tags via CDATA" and found this.
    I usually just write in all my XML by hand that included the CDATA tags if needed.
    http://activeden.net/item/flash-xml-editor-version-2/47884
    I hope this helps?

  • How to add html image tag in formsweb.cfg file

    Dear all,
    I am trying to display one image in background(not on form) by using HTMLbeforeform attribute in formsweb.cfg.
    from local machine that image is displaying..from other machine which is network I can able to access the forms first page but that image is not displaying..
    Where i need to keep the image? Is there any shared folder to keep images?
    The following code can give a clear idea...
    # HTML page title
    pageTitle=My Forms Server
    # HTML attributes for the BODY tag
    HTMLbodyAttrs=
    # HTML to add before the form
    HTMLbeforeForm=<img src='G:\images\logo.jpg' align=left height=150 width=150>--wich loc i need to place the img
    # HTML to add after the form
    HTMLafterForm=<MARQUEE><font color=blue><b><I>HAVE A NICE DAY!</MARQUEE>

    The image-tag has to point to an url at the application-server which is accessible from the client's browser. So, if your forms-url is something like
    http://host:port/forms/frmservlet?config=xxxThe image-url should be something like
    HTMLbeforeForm=<img src='/path/logo.jpg' align=left height=150 width=150>where path is a virtual directory on the application server. Either create such a virtual directory or use an existing one, like /forms/java, which points to $ORACLE_HOME/forms/java on the server.
    You can test that by puttin the url "by hand" in the browser like
    http://host:port/forms/java/logo.jpg

  • How to Include html tag in xml

    Hi,
    Is there any way to include html tags in xml?
    For Example, I'm using xsl to get the value of FIELD_1 from fetch.xml
    In fetch.xml, I have the tag
    <FIELD_1>
    <font color='#8080ff'>&#160;<font face='Times New Roman, Times' size='28'>Testing font and color</font></font>
    </FIELD_1>
    But If I tried to read the value from xsl like <xsl:value-of select="FIELD_1"/> I'm just gettig the display 'Testing font and color' without the specified font and color....
    How to achieve this?
    Thanks
    Selva.

    Hi,
    Thanks for the input.
    I tried with the below code
    <fo:block space-after="5mm" font-family="Arial"><xsl:copy-of select="FIELD_1"/></fo:block>
    But I'm getting the below error...
    "An invalid XML character (Unicode: 0xa0) was found in the element content of the document."
    Below is the code included in the xsl....
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="Values"><fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <fo:layout-master-set>
    <fo:simple-page-master master-name="simpleA4" page-height="29.7cm" page-width="21cm" margin-top="3cm" margin-bottom="2cm" margin-left="2cm" margin-right="2cm">
    <fo:region-body/>
    </fo:simple-page-master>
    </fo:layout-master-set>
    <fo:page-sequence master-reference="simpleA4">
    <fo:flow flow-name="xsl-region-body">
    <fo:block space-after="5mm" font-family="Arial"><xsl:copy-of select="FIELD_1"/></fo:block>
    </fo:flow> </fo:page-sequence> </fo:root> </xsl:template></xsl:stylesheet>
    Is there any mistakes in the above code?
    Regards,
    Selva.

  • How to add HTML into a muse file?

    I'm following google's advice for improving the SEO of a site I've designed in MUSE.  I visited their "STRUCTURED DATA Markup Helper  Here: https://www.google.com/webmasters/markup-helper/
    and they've given me this: after I highlight pointers in my page for google to mark
    what I need to know next, please, is how to locate the correct code within muse, in order to insert these highlighted HTML codes into it, so that google can find my pages easier. I have tried opening the relevent file that I use to store the site on my PC, but there seem to be no matching sections of code. I can only see css files.

    Hello,
    If you're looking to add the code to the head section of the page (which many tracking/analytics codes require), then you can add the code to the Page -> Page Properties -> Metadata -> HTML for head section. If you're looking to add the code to the body of the page, then use the Object -> Insert HTML option.
    Hope this helps.
    Cheers
    Parikshit

  • How to Add meta tag in bsp

    hi experts,
    we have a bsp page,in which i need to declare meta tags,like in html.
    but though i delare it,while i debug the code,I can see its not  passing through the meta code.
    please advise me how to add a meta tag in bsp.
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <%@extension name="xhtmlb" prefix="xhtmlb" %>
    <%@extension name="crm_bsp_ic" prefix="crmic" %>
    <%@extension name="bsp" prefix="bsp" %>
    <%@extension name="chtmlb" prefix="chtmlb" %>
    <%@extension name="thtmlb" prefix="thtmlb" %>
    <%
      DATA: lv_xml         TYPE string.
      lv_xml = controller->configuration_descr->get_config_data( ).
    %>
    <%meta http-equiv name=  "WorkspaceId"  content= "a2ac9b45-65bb-4d25-9fb6-d9478280fa19"  /% >
    <%meta  http-equiv name="SmartTags" content="SAPCRMCREATEACCOUNT" /%>
    <chtmlb:config xml  = "<%= lv_xml %>"
                   displayMode = "<%= controller->view_group_context->is_view_in_display_mode( controller ). %>"
                   mode = "RUNTIME" />
    Edited by: Anu_87 on Jun 29, 2010 6:50 PM

    Hi,
    there are no meta tags in HTMLB !!   If you really need to include these in your development, you have to do it with the old HTML tags like this:
    <html>
    <head>
    meta name="author" content="Anna Lyse"
    meta http-equiv="expires" content="Sat, 01 Dec 2001 00:00:00 GMT"
    meta name="keywords" lang="en-us" content="vacation, Greece, sunshine"
    </head>
    </html>
    I cannot enter the correct code for META because the @§$%&/ configuration in this forum is triggering an error page !!

  • How to add alt tags to photos in iWeb?

    How do I do this? Both for accessability and to allow users to hover over the image and get a caption.
    Thank you!

    You have to post process your html pages (editing after publishing).
    You need to add title inside some html tags, three that I know of:
    1. img src tag
    2. a href tag
    3. area href tag
    ie:
    a href="javascript:void(0)" title="blah blah"
    or
    img src="blah blah" title="blah blah"
    Now, the bad part is that you have to do this EVERY time you publish your sites.
    unless, you have a script to do heavy lifting

  • E-Mail Notification shows up HTML tag in the body

    Hi all,
    We successfully implemented the email notification. we have the standalone version of 2.6. We are now seeing the notification mails delivered to our mail boxes.
    We need some assistance, in setting the type of notification. We have set the Global preference for all the users as "Plain text mail with HTML attachments" and we have set the preference at user also like "MAILATTH". But the body of the notification mail has HTML tags along with the contents, we do have the attachment, when we open it , it works fine.
    our problem is , how to see the mails without those HTML tags, in the inbox.
    Any advice,
    Johnson

    There was a newline character in Subject field.
    Removing that fixed the issue.

  • How to add video tag in office 365 master page?

    Hi All,
    I have created a branding in Office 365. Now I want to add video in the background of my master page.
    How should I achieve It. the <Video></Video> is not working. It is giving error to me.
    Any option how to add videos in background of master page in Office 365?
    Thanks in Advance.

    Hi,
    From your description, my understanding is that you want to use video tag in your Office 365.
    You should check the video type in your issue, video tag only support mp4 file which you could refer to this article:http://www.w3schools.com/tags/tag_video.asp.
    In addition, you could refer to these articles:
    Video Player for SharePoint 2013 and Office 365
    http://sharepointroot.com/2014/01/22/video-player-for-sharepoint-2013-and-office-365-2/
    how to play a video in sharepoint 2013 foundation version
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/2818becf-e132-4b9a-b50f-8990fa28cf88/how-to-play-a-video-in-sharepoint-2013-foundation-version?forum=appsforsharepoint.
    Best Regards
    Vincent Han
    TechNet Community Support

Maybe you are looking for

  • How many devices can wirelessly connect to a modem

    i have a old desktop with a wirelss modem i have a laptop connect,xbox360 ps3 wii iphone and ipod touch all connect wirelessly i just orderd a imac will i be able to run the imac with all the other wirelss thing or will i have to drop on of them. tha

  • Assigning authorization to status in cFolder status profile

    Working with cFolders, I've written a function module that creates a status profile with statuses for use in a collaboration.  The status profile, several statuses and status transitions are being successfully created.  I am adding user group and rol

  • When index's need to be deleted in process chain

    Hi Friends ,    I am looking for some info in what scenarios the indexes need to be deleted & recreated  when loading data into a infocube thru process chain.     I am looking for hard figures\ std rules like at  what % of new data  indexs can be dro

  • Deployment problem - invalid username/password

    I've developed application using UIX/Struts/ADF BC4J technology. This application was developed on JDeveloper 9.0.5.2 in Windows. When I deployed this application to Application Server (9.0.4) on platform AIX it throws exception "Invalid username/pas

  • Apex Tomcat server is not running

    oracle version :10g apex Version :4.0 OS :unix 1.database server is working 2.apex server down 3.we increased tablespaces 4.checked locked account also. every thing fine . but we cannot able to access server we are receving message unable to found se