How to embed the webcontent in Email

Hi Everyone,
would you kindly let me know how to embed the webcontent in emails.
Thank you.

Actually, i believe it is possible if you encoded the
image file as a String, but still, why on earth you
want to do it?!Doesn't have to be a string. You could hardcode an array of bytes, and create an image from that.
IIRC that was a clumsy but useful technique prior to the introduction of jar files.
I may be misremembering. Check the docs to confirm...

Similar Messages

  • Embed the webpage in email

    Hello Every one how to embed the webpage /word content with images and text box into the Email using code.
    Your help
    Thanks.
    Message was edited by:
    ChJ

    http://www.rgagnon.com/javadetails/java-0504.html

  • How to embed the needed fonts in a pdf file

    Dear Sir/Mam,
    We had purchased licenced version of adobe acrobat x pro
    We are facing issues while embedding the font in the pdf file
    Please find the below mentioned requirement
    Requirement:
    We have a pdf file (template) with some static images and static text in it
    We need to populate dynamic data in the pdf file for this we may use text boxes
    We need to set the font name for the text box and embed that font in the pdf template (Eg:Font to be used in textboxes is "RotisSansSerif-Bold")
    Queries
    Please let us know how to embed the needed fonts in the pdf file?
    Once user exports the pdf file, even if user doesnot have the fonts installed in his system the text need to be displayed in the same fonts,how to acheive this?Eg:if we define "RotisSansSerif-Bold" as font in the textboxes,after exporting the data the text need to be in the same font.
    Note:
    Fonts will only installed in the application server and not in the client system
    The mentioned requirement need to work on below mentioned specifications
    OS:Windiows-XP,  Browser:IE
    OS:Mac osx, Browser:Safari
    Regards,
    S.N.Prasad

    There is a similar post just a few away from yours. I will suggest what I would try. Open your job settings file (press or print preferred to get all fonts) and then select the properties and the font tab. At your font to the always embed list and you will likely need to uncheck the subset box. Then save your job settings (give it a name that is meaningful to you, you can not use the settings file you started with as they are read only and I do not recommend changing that). Maybe that will do the job. Of course that is for the creation of the PDF, I forgot you were talking about a form. You might check the form field properties, but I suspect you have already tried that. Guess I don't play with forms enough. Others may be by to answer.

  • How to embed the Images in the java sourse

    How to embed the Images in the java sourse
    The size of the file will be too large while I put the binary code of the image into the java sourse!
    thanks

    You could encrypt them with a private key and then
    decrypt them with a public key.
    Almost had it... public key encryption works the other
    way around... otherwise what's the point of
    encrypting... if the decryption key is public?Spinoza's right. Public key encryption works both ways, but it would be useless in this case to encrypt with the private key. The problem is, how do you package your private key with the application in a way that doesn't allow the user to get it? Encrypt it? :-) I agree that there's no point to this exercize. If users want to screw up the application by editing its image files, let 'em.

  • How to reset the auto-complete email adresses?

    How can I delete old email addresses from auto complete?
    I have been having trouble trying to find out how to delete the old typed email history. For an example, if I go to send a picture to Bob, I start typing Bob and it comes up with 3 old emails of his. Not a big deal except it's hard to keep track of what emails are current.
     In other words, after deleting the old emails in the contacts it still shows up when I start typing a person's name. 

    I am having the same problem on my IPad.  It appears these old email addresses are saved in the memory and from what I read, there is no way to delete them regardless if you delete the contact.  Hopefully in a future update that can be resolved.  It is very annoying though.

  • How to change the sender's email (class  cl_sapuser_bcs) ?!?

    Hi Friends,
    Currently, I use class CL_BCS to sending an email. I've set sender as below :
    data: sender type ref to cl_sapuser_bcs.
    sender = cl_sapuser_bcs=>create( sy-uname ).
    call method send_request->set_sender
    exporting
    i_sender = sender.
    But I don't know how to change the sender's email to a specific email address, i.e: [email protected]
    Anyone can tell me how?
    Thanks,
    Gy

    DATA: recipient          TYPE REF TO if_recipient_bcs.
    sender = cl_sapuser_bcs=>create( sy-uname ).
          CALL METHOD send_request->set_sender
            EXPORTING i_sender = sender.
        --------- add recipient (e-mail address) -----------------------
        create recipient - please replace e-mail address !!!
         <b> recipient = cl_cam_address_bcs=>create_internet_address(
                                            '[email protected]').</b>
        add recipient with its respective attributes to send request
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient  = recipient
              i_express    = 'X'.
    Message was edited by:
            Hymavathi Oruganti

  • How to embed the pdf in custom transaction itself

    Hi Masters,
               By my custom program i am showing the form in pdf format . I am saving this pdf in local drive and i am opening that pdf in seperate screen.
                My question is how to embed the pdf file within the transaction rather than downloading to client system and opening it there??. Its very urgent.
                Thanks in advance.
    Best Regards,
    Purna

    Hi,
    Use CL_GUI_FRONTEND_SERVICES=>EXECUTE
    or CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG
    in your program.
    Best regards,
    Prashant

  • How to embed the Word Document and PDF file into Crystal report?

    How to embed the Word Document and PDF file into Crystal report?
    I have word doc which having 10 pages. I need to show all of the 10 pages at a time. I tried OLE object but problem is it shows only one page.
    Is there any solution to show word doc / PDF file in CR?

    Symptom :
    When embedding a pdf document into a Crystal Report, only the one page shows.
    Reproducing the Issue
    Environment:
    Crystal Reports OLE object
    Cause
    An OLE object only displays the first page.
    Resolution
    Embed multiple objects, one for each page
    Or
    Use a hyperlink to the object instead
    Hope this helps!
    Regards,
    Vinay

  • How to embed the html file into form 6i?

    How to embed the html file into form. What control activeX should i use? please help!!!!!!

    You can use web.show_document function for this purpose. See
    form builder help topics for more details.
    Hope this helps.

  • How to embed the WEBI report as portlet

    I am a fresh man of WEBI.
    I want to know how to embed the WEBI report to a web page as the portlet (like weblogic portal).
    I have used the OpenDocument URL to do it, but the report have a tool bar on the top, status bar on the bottom and a prompt area on left. So what i want to know is how to integrate the report itself on my portal (no tool bar, no status bar and no prompt area). Is there any way to control the display of these different area?
    thnaks!

    Normally there is not way to deactivate the statusbar and the toolbar. What you can do is to try to capture the HTML stream using javascript and filter out the toolbar components. This can be quite complicated though since the html structure of the report is quite complicated (multiple iFrame layers). And there is no garantee that this structure will remain inchanged in the next fix pack or service pack.
    A rather simpe solution could be to "cover" the toolbar with an additional  opaque frame.
    Regards
    Stratos

  • How to embed the Piecemaker gallery?

    Hi
    I don't have any experience in using Flash, but I just found a brilliant Flash freebie on Modularweb called The Piecemaker. I want to include it in my website but I don't have any idea how. I read the documentation and I'm still confused and I still don't understand the instructions.
    Here's the instructions:
    HOW TO EMBED THE GALLERY?
    1.  Copy the packages „com“ and „caurina“ from the folder to your classes directory. It works without that,
    but only if you always move these packages along with the FLA fle. If you‘re not familiar with working with
    classes, check the tutorial at Adobe Livedocs
    2.  Open the fle „piecemaker.fa“ and try to publish it to check, if the classes are referenced correctly.
    3.  The actual gallery is nothing more than the empty MovieClip on the „gallery“ layer. It has the base class
    „com.modularweb.imageGalleries.Piecemaker“, which holds all the code. To copy the gallery into your own
    project, you just need to copy this MovieClip as well as all the elements from the library to your project.
    4.  Three basic properties of the gallery are assigned on the „actions“ layer. The code from this layer has to be
    copied to your project, too. These properties are xmlSource, cssSource and imageSource, which
    hold the paths to the XML fle, the CSS fle and the folder containing the images to be loaded. Please note
    that if you embed the gallery to your project, these paths need to be relative to the location of your project.
    In the folder of the Piecemaker the I downloaded it contains:
    1) caurina
    2) com
    3) documentation
    4) images
    5) index
    6) piecemaker.fla
    7) piecemaker
    8) piecemakerCSS
    9) piecemakerXML
    So what do I need in order to make this work in my website?

    Yep,you have to look at JSR 75 (File Connection API). But:
    1) You need to understand is your phone model supports JSR 75
    // if prop==null, then this phone doesn't support JSR-75, otherwise you'll get File Connection API version
    String prop=System.getProperty("microedition.io.file.FileConnection.version");2) You need to exactly locate on phone file system where is image gallery and/or memory card
    // get image gallery full url
    String imageGalleryURL=System.getProperty("fileconn.dir.photos");
    String memCardURL=System.getProperty("fileconn.dir.memorycard");After all of that file opening is easy...

  • How to change the SBO mailer email address

    Hi,
    Just want to check , how to change the SBO mailer email address? 
    Thanks and Regards,
    Melvin

    Please take a look at this link
    http://www.dei.isep.ipp.pt/~jmendes/SINFI-2005/SAPB1_Documentation/_TB1300%20Material/BO65000_14-10001981/Documentation/Service%20Manager/SBO_ServiceManager_65_EN.pdf
    You no need to send mails through outlook. Once you run the Addon of outlook integration yu have to do the outlook settings and then you cansend it internally hrough B1 but history will get stored in outlooksent box.

  • How to setup the reply-to email in a concurrent Program

    Hi
    I am trying to setup the e-mail Delivery Options when submitting af Concurrent Program in OEBS 12.1.3.
    I submit a concurrent job and choose the Delivery Option -> Email and then enter a To: e-mail.
    Then the "From:" address is populated with my e-mail (from > FND_USERS) but when the e-mail is send to a reciever the "From:" e-amil i changed to no-reply.
    How an i specify to use the From: email when i submit a concurrent program.

    Hi,
    How an i specify to use the From: email when i submit a concurrent program
    You can overwrite the default address, and I believe you know of this. Could you elaborate what is the error message you are getting when you do so.
    Thanks &
    Best Regards,

  • XSQL: How to embed the XML document(s) instead of posting?

    Dear all.
    I'm trying to use XSQL for a self-contained database schema setup. This setup should be able to handle DML (INSERT/UPDATE/DELETE), PL/SQL calls etc and I thought XSQL looks perfect for the job. As such, I wouldn't be using XSQL as a publishing framework but as kind of an ETL tool. The only output I would be interested in would be the xsql-status in order to check that the number of rows processed matches my expectations. I would prefer XSQL to run entirely within the database and not depend on any servlet container.
    However, it seems that XSQL's only way of obtaining the canonical XML (ROWSET/ROW) that is used by xsql:insert-request/xsql:update-request/xsql:delete-request is through HTTP POST/GET. It doesn't seem that it's possible to embed the XML directly in the page, nor does it seem possible to handle more than one XML.
    I'm trying to achieve something like this:
    <?xml version="1.0"?>
    <page connection="scott" xmlns:xsql="urn:oracle-xsq">
    <xsql:insert-request table="DEPT">
    <ROWSET>
    <ROW>
    <DEPTNO>-10</DEPTNO>
    <DNAME>NEW DEPT 1</DNAME>
    <LOC>COPENHAGEN</LOC>
    </ROW>
    <ROW>
    <DEPTNO>-20</DEPTNO>
    <DNAME>NEW DEPT 2</DNAME>
    <LOC>LONDON</LOC>
    </ROW>
    </ROWSET>
    </xsql:insert-request>
    <xsql:insert-request table="EMP">
    <ROWSET>
    <ROW>
    <EMPNO>-10</EMPNO>
    <ENAME>NEW EMP 1</ENAME>
    </ROW>
    <ROW>
    <EMPNO>-20</EMPNO>
    <ENAME>NEW EMP 2</ENAME>
    </ROW>
    </ROWSET>
    </xsql:insert-request>
    </page>
    or perhaps
    <?xml version="1.0"?>
    <page connection="scott" xmlns:xsql="urn:oracle-xsq">
    <request>
    <parameters>
    <dept>
    <ROWSET>
    <ROW>
    <DEPTNO>-10</DEPTNO>
    <DNAME>NEW DEPT 1</DNAME>
    <LOC>COPENHAGEN</LOC>
    </ROW>
    <ROW>
    <DEPTNO>-20</DEPTNO>
    <DNAME>NEW DEPT 2</DNAME>
    <LOC>LONDON</LOC>
    </ROW>
    </ROWSET>
    </dept>
    </parameters>
    </request>
    <xsql:insert-request table="DEPT" param="dept"/>
    <xsql:insert-request table="EMP" param="emp"/>
    </page>
    I need both INSERT/UPDATE/DELETE so xsql:insert-param isn't enough, would also need an xsql:update-param and xsql:delete-param.
    A way of referring to the canonical XML through an URI or XPath expression (referring to a registered XML document in the database) would also be cool.
    Perhaps implementing custom action handlers would work but not sure whether they'll be able to refer to any child XML elements within them? Furthermore, the syntax for these would also be slightly inconvenient:
    <xsql:action handler=com.ellebaek-consulting.xsql.InsertActionHandler" table="DEPT">
    My alternative would be to re-implement an extended version of XSQL (XSQLX :-)?) but I'm trying to avoid that.
    Any pointers and ideas are very much appreciated.
    Thanks in advance.
    Best regards
    Finn Ellebaek Nielsen

    Hi.
    Thanks for your reply but the article only talks about how to query data with XSQL and I need to INSERT/UPDATE/DELETE data embedded in XSQL pages into the database so I'm afraid that the article doesn't apply.
    Cheers
    Finn

  • How to embed reports in an email using Scheduler

    Hi all,
    I am using the "schedule" option in a webi report to deliver a report through email in pdf format. However, our end users want the report data to be embedded in an email rather than as an attachment. We are using BO XI 3.1. I tried searching in google for more than a day and couldnt get any relevant info. Could someone please let me know if it possible to embed report data in an email ? If so, could you please share your notes.
    thanks
    Joe.

    Hi,
    Scheduling a webi document does not give the option to embed the report in mail body.
    However, this is possible while scheduling a publication. You can create a publication for the webi report and schedule it with format mhtml to email. Please refer to the publication guide for details.
    http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_publisher_en.pdf
    Regards

Maybe you are looking for

  • Time Machine does not see my external HD

    I would like to setup TM but it does not see my external HD, but I can see it on desktop in and finder. I can browse it. But time machine does not see it and forces me to use airport time capsule but I don't have it. Help please.

  • Retention Policy and Managed folder based retention

    What is difference between "Retention Policy/ Policy Tags" and " Managed Content Settings"? In my setup , my managed folder folder become general folder after following steps 1. Created Managed folder 2. Created managed content settings for IPM.post

  • Interactive forms in web Dynpro 4 ABAP

    Hi, where can i get the step by step procedure to use INTERACTIVE form in Web Dynpro4 ABAP Thanks SAI

  • AIR auto-updater -- include markup?

    I have had my AIR application able to auto-update for some time.  But I'm wondering if you can somehow include HTML in the description you see of the auto-updater.  Here is my update.xml file on the server: <?xml version="1.0" encoding="utf-8"?>  <up

  • Aperture library on network / server

    Hello - Just wondering if anyone has any advice / experience on storing the Aperture library on a network drive. Would this affect performance ? Also - anyone tried using Aperture with a Mobile Account in Snow Leopard Server? Thanks, Andrew