Sending content in an html page via email as body

Hi
I am really in need of a prompt help for sending a web page which contains some html content as an email body.
I really have no clue about this.
I have tried searching in google but could not find any thing in java.
I have everything ready for sending an email, i.e. to, from and subject.
The only thing i need is the content from an html.
I can set the content type as text/html.
I need some help on content Id and content.
Any quick help is really appreciated.
Thank you.

I have tried searching in google but could not find
any thing in java.You actually didn't. Go take a look:
http://java.sun.com/developer/EJTechTips/2004/tt0426.html#1

Similar Messages

  • How to send HTML page via an email

    Hi..
    I wanna send HTML page with images via an email, it should not go as an attachment.
    Is there any Tool or Software available to send HTML Pages via email.
    i just wanna send my advertisement as a HTML page via email
    So plz. help me out

    Java Message Service (JMS) For more info u can visite http://java.sun.com/products/jms/tutorial/
    It is usefull only when u r using some Application servers like WebLogic, WebSpeher, or JBoss
    Bye

  • How do I send a page via email in the body of the mail and not as an attachment?

    I wish to send a page via email in the body of the mail. The only option to send a page appears to be to save it first and then attatch to the mail.

    When you are in the Plan View, right click on the icon for the page that you want to omit from the menu. Near the bottom, you'll see Menu Options, click on that and you'll have the choice to Exclude Page from Menus.

  • How do i send a link or page via email with firefox?

    i am new to firefox. had internet explorer for a long time. when i found a site on the internet that i wanted to share with a friend, there were choices somewhere on the menu bar or where the tabs are that said "send link via email" and "send page via email". when i selected one of these, a new email would open in yahoo with the link or page in the body, and i could send this to any contact. can't find these options here. please help! thank you!

    There is an option to "Send Link..." in the File menu. Firefox does not have a built-in send page by email option.

  • Make my week schedule and then send it to all my team via email in detail

    I just switched to iCal (Calendar as I have ML) and the important feature for me using Outlook before was to Make my week schedule and then send it to all my team via email. They could see my whole week outlined in detail, I could choose data ranges, wether I wanted to send details or titles and then receiving parties could add the meetings they wanted in their calendar as well.
    Am I missing something or ical completely missed the boat on that one? is Apple going Backwards?

    Hi,
    This issue is usually caused by some anti-virus programs, disable the anti-virus program you have on the PC, check if this issue will happen again.
    You may also run Outlook in Safe Mode to determine if it's 3rd-party add-ins related:
    Press Win + R and type “outlook.exe /safe” in the blank box, then press Enter.
    If there’s no problem viewing html emails in Safe Mode, disable the suspicious add-ins to verify which add-ins caused this issue. Some security programs may have such add-ins intergrated with Outlook.
    Regards,
    Melon Chen
    TechNet Community Support

  • I transferred a pages file from ipad to mac (also pages) via email for editing. However received message that cannot save edited document to the mac because "trial period has expired for iwork"! I have purchased pages for both machines separately. Ideas?

    I transferred a pages file from ipad to mac (also pages) via email for editing. It opened normally. However, after editing, received message that cannot save edited document to the mac because "trial period has expired for iwork"! I have purchased pages for both machines separately and presumed they would work without a hitch. Am I missing something?

    It used to be that to update the trial to the licensed version with the box, you just inserted the DVD & ran the installer to convert the trial to licensed. This changed with Snow Leopard. You now need to delete the trial & then reinstall from the boxed DVD or the Mac App Store. The files to delete are the iWork ’09 folder from the main HD > Applications; the iWork ’09 folder in HD > Library > Application Support & the individual iWork application plist files found in HD > Users > (your account) > Library > Preferences for each user.
    Yvan Koenig has written an AppleScript that removes the files. You can find it on his iDisk in For_iWork > iWork '09 > uninstall iWork '09.zip.

  • Send spool id output (sap script) via email in PDF format

    Dear friends,
    Looking for sample program to send spool id output of sapscript via email in PDF format.
    Regards,
    Praveen Lobo

    Hi,
    Try this code..
    * Parameters.
    PARAMETERS: p_email(50) LOWER CASE.
    PARAMETERS: p_spool LIKE tsp01-rqident.
    * Data declarations.
    DATA: plist LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
    DATA: document_data LIKE sodocchgi1.
    DATA: so_ali LIKE soli OCCURS 100 WITH HEADER LINE.
    DATA: real_type LIKE soodk-objtp.
    DATA: sp_lang LIKE tst01-dlang.
    DATA: line_size TYPE i VALUE 255.
    DATA: v_name LIKE soextreci1-receiver.
    DATA rec_tab LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    * Get the spool data.
    CALL FUNCTION 'RSPO_RETURN_SPOOLJOB'
    EXPORTING
    rqident = p_spool
    first_line = 1
    last_line = 0
    desired_type = ' '
    IMPORTING
    real_type = real_type
    sp_lang = sp_lang
    TABLES
    buffer = so_ali
    EXCEPTIONS
    no_such_job = 1
    job_contains_no_data = 2
    selection_empty = 3
    no_permission = 4
    can_not_access = 5
    read_error = 6
    type_no_match = 7
    OTHERS = 8.
    * Check the return code.
    IF sy-subrc <> 0.
    MESSAGE s208(00) WITH 'Error'.
    LEAVE LIST-PROCESSING.
    ENDIF.
    * Prepare the data.
    plist-transf_bin = 'X'.
    plist-head_start = 0.
    plist-head_num = 0.
    plist-body_start = 0.
    plist-body_num = 0.
    plist-doc_type = 'RAW'.
    plist-obj_descr = 'Spool data'.
    APPEND plist.
    plist-transf_bin = 'X'.
    plist-head_start = 0.
    plist-head_num = 0.
    plist-body_start = 1.
    DESCRIBE TABLE so_ali LINES plist-body_num.
    plist-doc_type = real_type.
    * Get the size.
    READ TABLE so_ali INDEX plist-body_num.
    plist-doc_size = ( plist-body_num - 1 ) * line_size
    + STRLEN( so_ali ).
    APPEND plist.
    * Move the receiver address.
    MOVE: p_email TO rec_tab-receiver,
    'U' TO rec_tab-rec_type.
    APPEND rec_tab.
    IF NOT sp_lang IS INITIAL.
    document_data-obj_langu = sp_lang.
    ELSE.
    document_data-obj_langu = sy-langu.
    ENDIF.
    v_name = sy-uname.
    * Subject.
    document_data-obj_descr = 'Spool attached'.
    * Send the email.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = document_data
    sender_address = v_name
    sender_address_type = 'B'
    TABLES
    packing_list = plist
    contents_bin = so_ali
    receivers = rec_tab
    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 e208(00) WITH 'Error in sending email'.
    ENDIF.
    COMMIT WORK.
    * Send the email immediately.
    SUBMIT rsconn01
    WITH mode = 'INT'
    AND RETURN.
    * Success message.
    MESSAGE s208(00) WITH 'Email sent'.
    Thanks
    Naren

  • How do I scan a photo to a file and then send the file as an attachment via email.

    How do I scan a photo to a file and then send the file as an attachment  via email.

    All of this depends largely on what printer /software you have, which Email client you use and to some extent which OS you are running.
    Most HP printers have HP Solution Center which is used to set up scanning,choosing where to save,etc. Once a file/photo is scanned and saved to the folder, open the folder.Select the file and at the top of the window should be the option to 'Email'.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • How to call KM content in independent HTML page?

    Hi,
    My requirement is to call KM contents in simple HTML page,
    Actually I want to show documents from specific location of KM into HTML page which is nowhere related to EP pages, it will be totally independent page.
    Can anyone come across the same requirements?
    Thanks,
    Vikas

    Hi,
    i think you can call KM content with in an independent HTML page by using the tags in HTML ,href="target path of your KM content" and target="_blank" OR "_new","_top" any of these you can use based on your requirement.But i think  you shud have to upload your html document under km content with in ur portal environment.As you  said your are not attaching that html page to portal  you can call your KM content by specifyng url of your km content, otherwise you can make use of quick link property of page. If you want further help you could ask me .. i hope it'll be useful for you.
    Regards,
    Sitara
    Edited by: sitara kola on Mar 7, 2008 11:47 AM

  • HT4993 When I send Outlook invites to my iPhone (via email) the appointments appear 3 hours earlier? The time setting appears to be EST which is accurate so I can't figure out why the appointments don't appear in real time.  Thanks for your help, Ellen

    When I send Outlook invites to my iPhone (via email) the appointments appear 3 hours earlier? The time setting appears to be EST which is accurate so I can't figure out why the appointments don't appear in real time.  Thanks for your help, Ellen

    1) The best way to relocate the iTunes library folder is to move the entire iTunes folder with all subfolders to the new path, then press and hold down shift as start iTunes and keep holding until prompted to choose a library, then browse to the relocated folder and open the file iTunes Library.itl inside it.
    If you've done something different then provide some more details about what is where and I should be able to help.
    2) Purchases on the device should automatically transfer to a Purchased on <DeviceName> playlist, but it my depend a bit on whether automatic iCloud downloads are enabled. If there is a cloudy link then the transfer might not happen. You can use File > Devices > Transfer Purchases. In iTunes you should also check out iTunes Store > Quick Links > Purchased > Music > Not on this computer.
    3) Backup the device, then immediately restore it. In some cases you need to add a restore as new device into that equation. Obbviously not to be attempted until you're sure all your media is in your library. See Recover your iTunes library from your iPod or iOS device should it be needed.
    4) I believe there is complimentary 1 incident 90-day support with hardware purchases, but no free software support for iTunes itself. AppleCare gets you a different level of support.
    tt2

  • How do I send soft copy attachments of photos via email to windows user

    Help , need to send soft copy  attachments of photos via email to windows operator . thanks

    Not sure what you mean by soft copy attachments. But to help ensure Windows users have no problem coping with attachments from Mail Control+Click on the attachment that displays as an inline image and select 'View as Icon'. Also, in Mail>Edit>Attachments make sure 'Always send Windows-friendly attachments' is ticked.

  • Is there a way to send output from a Concurrent Request via email in r12?

    We are looking for a way to send emails out from the Concurrent Request output in r12.
    Discussions internally have involved using Unix procedures/commands but we were looking for an EBS integrated solution if one is available.
    I did find document 811716.1which seems to provide a solution, but the patches and information given are for 11i (we are r12). If this functionality is available in r12, is there any further documentation we can use?
    Any assistance would be appreciated.
    Thanks.
    Kevin
    Edited by: user3065048 on Jul 21, 2009 2:52 PM

    Duplicate post.
    Is there a way to send output from a Concurrent Request via email in r12?
    Re: Is there a way to send output from a Concurrent Request via email in r12?

  • Need to send HTML table via email

    Hi Experts,
    I am using the FM EFG_GEN_SEND_EMAIL to send email but unable to send html content through this. I know I could use SO_SEND_OBJECT FM too which automatically sends the email in HTML format but it doesn't have from option(FROM EMAIL ID)
    I tired manually chaning the format from RAW to HTM via debugging and then found that its sending the html format email.
    Request you to please let me know if we could achieve the same.
    Thanks,
    Rajwin

    Hi,
    rcently we idd this requirment .
    But every thing we did it from ABAP side   not from WDJ Side
    Generation of PDF after enterring the data will be send via email along with PDF Data so try to use  Smart Forms
    Regards,
    Govindu

  • Problem sending files from Pages via email

    I am using a Yahoo business mail account. All other emails send just fine using Mail. When I try and send a document out of Pages, it brings up the compose new mail fine and it makes the "whoosh" noise indicating that it's been sent. The recipient doesn't receive it, and it doesn't show up in my "sent items" folder. I tried to send using both wifi and 3G for interest's sake, and neither works.
    I'm not sure what to try to fix this, or if it's a limitation of the SMTP server, or what. Any help would be greatly appreciated - my iPad Pages is gimped without the ability to share documents by email...

    Welcome to Apple Discussions
    iWork documents are packages, a special type of folder. Even though with iWork '09 & iWork for iPad they no longer appear as packages, they still are. On a Mac right-click on the file & look for show package contents. If that option is not there it is a "flat-file" but it can still be unzipped.
    Anyone with Stuffit Expander installed with default settings & who saves Pages files to the Desktop will find folders instead of just the document. This is because Stuffit "sees" the file for what it really is, a package. You can check for yourself by changing the extension from .pages to .zip & unzip the file. You can't e-mail a folder which is why many mail clients balk. Apple Mail will automatically zip a folder, other e-mail clients don't, especially web-based e-mail. I think you may be mailing as a Pages document rather than Word or PDF.

  • I cant successfully send files from pages via email on my ipad

    The files i send from pages via mail hardly ever send, and when they do i am unable to open the file in the mail, i am having the same truble with sending files from the photo library from my i pad

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release

Maybe you are looking for

  • Regarding upgrade of web report\web templates functionalites BW 3.5-BI 7.0

    hi all,          I m working on a Upgrade study from BW 3.5 to BI 7.0 for Web Templates,web items and java scripts. Below is the scenario of the client system: New web templates are created from the 6 master web templates available for publishing to

  • Is there a way to have autogenerated columns in SSRS Report without declaring the column defination at design time.

    I just have a procedure in which i do have a dynamic query.It has certain parameter on the basis of which different set of columns will be returned in the result set. Now I want a SSRS report which can automatically pick up the columns from the Proce

  • Asset back dated GRN.(Very urgent)

    Dear Gurus, My client is facing an issue that while making backlog they missed out to pass Some asset GRN related to Asset, say for the month  April and May after all verifications they came to know that some of the Asset GRN is missing. know the iss

  • Not able to edit ZXRSRU01

    IDES BW3.5/SEM 4.0 has been installed on Netweaver 04 having SP9 and facing the following problem . In spite of giving developer key access not able to edit program ZXRSRU01 ( package : Z_TRAIN ) either thru transaction cmod or se38. On clicking the

  • Is there anyway to access deleted Time machine backups

    I have a fairly new Imac [Sep 2011] with an SSD and 1TB ,setup b apple. Because of a simple mistake, I messed up this and in doing this I must have deleted Backup on Time Machine. Only backups I am seeing now are from my Network  Macbook Pro Is there