Send SharePoint Page content as Email

Hi All,
I have create the SharePoint Page with content editor webpart.
I add some tables with contents. And I want to send the content of this page to participant's email. (the page content not the url of the page)
Is there any way to serve this requirements?
Best Regards,
Andy

Why dont you save it as PDF and send it accross
http://social.technet.microsoft.com/Forums/en-US/5f1c6fa1-5829-4ee5-a488-53e307e6f298/save-sharepoint-aspx-page-into-pdf?forum=sharepointdevelopmentprevious
http://sharepoint.stackexchange.com/questions/81363/how-to-save-the-webpage-data-as-pdf-using-javascript
You can create an user control with three button images (for Pdf, Print and Mail). On the click event of the button image (pdf) you can write the following code to read html stream of the page, convert it into open XML and then use the following snippet
to convert OpenXml it into pdf files
//Variables used by the sample code.
ConversionJobSettings jobSettings;
ConversionJob pdfConversion;
string wordFile;
string pdfFile;
// Initialize the conversion settings.
jobSettings = new ConversionJobSettings();
jobSettings.OutputFormat = SaveFormat.PDF;
// Create the conversion job using the settings.
pdfConversion =
  new ConversionJob("Word Automation Services", jobSettings);
// Set the credentials to use when running the conversion job.
pdfConversion.UserToken = properties.Web.CurrentUser.UserToken;

Similar Messages

  • When I click on send link in my menu it won't respond to send the page to my email address

    with my old version of firefox I could click on send link in my file menu and send the page to my email address and with the new version of firefox the send link will not respond

    Make sure that you have the correct settings:
    [http://support.mozilla.org/en-US/kb/Changing%20the%20e-mail%20program%20used%20by%20Firefox Set Default Email (mailto) Client in Firefox] - Read and follow that article to see if it corrects your troubles.

  • Mail won't send web page content or link

    I posted this the other day on the Safari site but should have posted here as well.
    Suddenly I am unable to forward a web page in Safari 3.12 through Mail. I get the message:
    "Safari couldn’t create an email message because it couldn’t locate an email application.
    You can use the Mail application included with Mac OS X to send email. To do so, you might need to install Mail using the Mac OS X installation CDs."
    This occurs whether I wish to mail the link to the page or the page contents. The program has been installed since I purchased the laptop and never had a problem doing this before. Any ideas or solutions? Thanks,
    Dennis

    Found Answer in previous discussion of this date.

  • 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

  • Outlook 2013 How to send web page as an email?

    I have done a web page with CSS styles in the HTML file. Still when I try to send the file as an attachment as text the styles don't render well, for example divs have borders and links doesn't work at all. I try to send a newsletter.

    Hi,
    Would you please attach a screenshot to help us understand the issue? If your account is not verified to attach images, please share the screenshot to us via sending it to
    GBSD TN Office Information Collection [email protected]
    (The email subject should be the thread link)
    Thanks,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Send a page as an email

    I have a link in Jsp page like " Email this page " .So I have to send the jsp page as it is to some email address.

    I'll eat my laptop if I'm wrong.
    By "as it is" I think he means "as you see it on the screen" and he's specifically trying to specify the distinction between that and the raw JSP that he doesn't want to send.
    If he meant the alternative I'd expect an even more waffly explanation, the use of the word "code" and so on. Besides, why on earth would he want to do that?
    But it is, I suppose, possible that he really does want to send the raw JSP logic to someone for some unfathomable reason (stranger things have been requested) so I withdraw the "idiot" jibe at the other guy.

  • Can't send a PAGES document Via email in PDF form ... used to be done by clicking share and PDF  HELOP

    creating a document on pages and trying to share it via email in PDF form used to be really easy...
    How does this work now?  help

    I always just do file->print. Then in the lower left is a menu that said "PDF" and just pick "Mail PDF" from the dropdown and a new email is composed with the PDF attached. One step to print, one click to choose mail and you're done. I just tried this on the latest Yosemite and Pages updates and it works fine.

  • Sending E-mail from iReceivables Page (Page Content)

    Hi,
    In the iReceivables page, we need to send the page content (Invoice, credit memo) as an email to the users.
         Any inputs is highly appreciated.

    There are only two ways to process form data -
    1. Use mailto:[email protected] as the action of the form
    2. Use a server-side scripting method to a) harvest the
    form's data, b)
    process it in some manner, e.g., enter it into a database, c)
    formulate and
    send an email to one or more email recipients, and d)
    redirect the visitor
    to some ending page
    Method 1 is quite simple, and is also the least reliable. It
    depends both
    on your visitor having an email client already installed on
    their computer -
    this eliminates public computers, or home users without email
    clients
    installed (more and more it seems) - and on the installed
    email client
    responding to
    the mailto call. It is not possible to use this method *and*
    send the
    visitor to a
    thank you page as well. However, you *can* use this method
    and add a
    subject line to the email.
    Method 2a is the preferred method, since it eliminates the
    problems of
    method
    1, but it means that you have to grapple with
    server-scripting somehow (ASP,
    CF, PHP, perl, etc.).
    Method 2b would be to use some third-party form processing,
    like
    http://www.bebosoft.com/products/formstogo/.
    You would have to decide which of these methods is best for
    your needs,
    but if it's Method 2a, then start by asking your host what
    they provide for
    form
    processing. If it's 2b, then read their FAQ/instructions
    carefully.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "swifty00" <[email protected]> wrote in
    message
    news:fvt7dp$99u$[email protected]..
    > Am new to dreamweaver etc, I want e-mails generated from
    e-mail links on
    > my
    > site to have a subject line idenitfying their origin as
    being from my
    > site. Can
    > dreamweaver do this, can someone tell me how??
    >

  • Send UIX page as Email

    I am generating a report using UIX. Can I send that page in an email using Java SendMail API.
    Thanks.

    You should probably render the page using the FACET_EMAIL which will eliminate Javascript and attempts to inline styles whereever possible. You can read about this in Customization of ADF UIX chapter.
    Jeanne

  • Sending a Pages document as an email but not an email attachmentt

    using iwork '08 and a pages newsletter template, is there a way to send a pages document as an email without making it an attachment? for business a newsletter is better for clients if it arrives in the email as the body of the email instead as in the form of an attachment. how is that possible with Pages?

    Hi J,
    Copy the contents of the Pages document and Paste into the body of the email. Try this and see if the formatting remains satisfactory.
    Regards,
    Ian.

  • How to send browser display HTML page as HTML Email using JSF

    Hi all
    i need to send a whole jsf rendered page as a html page.... . say theres a page which hav few links , images etc & theres a send email button at the end of the page. once the user clicks on the button the whole page shld appear in another window which hav from,to, subject line + the html body of tht earlier page & once he clicks the send button it should send to the sender & the receiver should see the email a s a html email.where u can click on the links,images showin etc...
    Thanks
    Saman

    Subhash,
    Here is one approach..
    1. Make the report page as PUBLIC ( no Authentication required)
    2. Create procedure which will pull the page content and send it to pre-defined e-mail address
    2.1 Use utl_http.request to pull the page content
    2.2 Store the page content in some PL/SQL variable and pass it as 'p_body_html' parameter to APEX_MAIL.SEND procedure.
    3. Schedule the above procedure to run on daily using DBMS_JOB API.
    I have not implemented it and its just a thought.
    Regards,
    Hari

  • How can I email a web page. The older version would enable you to email an entire page contents, but Mavericks does not

    When I try to email a Safari web page with Mavericks, some times it does not allow me to send the actual page and its contents. Instead it offers
    you to email as a web page, link or PDF file. However, when you send the page, the images do not show up in the email.

    Hi,
    You can try to right-click on the page and '''Send Link'''.
    You can also install [https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/?src=search Addon Compatibility Reporter] and try to '''Enable''' the said extension in '''Tools''' ('''Alt''' + '''T''') > '''Addons'''. Hopefully this will restore at least partial functionality. You may also be able to find alternatives via the search box on the top right of the Addons page, or [https://addons.mozilla.org/ AMO].

  • Attach page content as pdf in email

    Thanks for all who answer this thread.
    I am using this syntax to send email from a web page....
    <cfset subject = "Application Name">
    <a
    href="mailto:?subject=#urlEncodedFormat(e_subject)#">Email
    page</a>
    i know, how to create page content in pdf...
    How can i attach page content pdf to this mail? is that
    possible?.
    OR
    what is best way to send page content PDF as email.....
    user want to type some info in body of email.....
    thanks

    Use cfsavecontent to generate your page content.
    Use cfdocument to create the pdf file
    Use cfmail and cfmailparam to send it as an email
    attachment.

  • How to send task content as email?

    Hi all,
    I have task list, need to send task content as email to a person like:
    How to achieve this?

    Hello,
    create a workflow with SharePoint Designer that sends an email when an item is created.
    Or edit the list form with InfoPath and create a special email view. Include all the fields you want to send in the email. Then create a data connection to submit to email and configure who it is sent to and what the subject line is based on the form values.
    Use a button to submit the form and add a rule to submit the form data, then switch to the email view, submit to the email connection and then close the form.
    This way, the recipient will see the exact form you defined in InfoPath  in the email view.
    cheers, teylyn

  • Sending web pages as body of email.

    Hi everyone,
    So, I know how to open webpage and go to FILE> Mail contents of this page. But for some reason when I do this and email someone and they try to forward this on to another person everything becomes all jumbled up in the body of the message. I have tested this by sending myself and email both on my MAC and PC and it does this with my MAIL app too. Does anyone know why this is so difficult to do?
    I heard that the new MAIL in leopard was going to be able to do this better. I just want to send out email brochures to my client mailing list but I want them to be able to forward them on as well.
    Thanks,

    Instead of trying to send the contents of the webpage, simply send a nice note to your contacts in this email and insert the web address.
    Like:"Come visit my new webpage and forward this note to your friends...".
    THEN, paste the URL of your page into the email (http://www.MyNewExamplePage.com)
    or whatever your website address is.
    Formatting an email as true HTML can be a little hard, since (as you've found) since different email programs, ie: your recipients, display HTML email differently.
    Plus, as THEY forward your mail, it's THEIR email program which changes the formatting...you have lost control of the formatting as soon as you click send.
    Send out the URL. And poke around here for more tips for success.
    http://www.google.com/search?hl=en&q=sendingHTML+email&btnG=GoogleSearch

Maybe you are looking for

  • Exception [TOPLINK-4002]

    Hi,I have no idea,help.thanks javax.ejb.EJBException: nested exception is: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:      java.rmi.RemoteException: null; nested exception is:      Exception [TOPLINK-400

  • After a restore from Time Machine my login password does not work.

    My HD crashed and I replaced the HD.  I then restored from Time Machine.  After it was done restoring it prompted me for my apple ID and password and account info.  Now when I try to login, the password does not work.  After several failed passwords,

  • 2 CD's Show in Finder

    Does anybody else get this. Burn a play list to cd, when the finished CD mounts itself at the end the finder shows one CD with the burn list name and still shows the blank cd which is not there as i have one drive. To get rid of them i have to eject

  • Photos misaligned on the page once published...

    The photos are perfectly placed in the iWeb project. I publish. The photos have moved in their positioning ... I've never seen this happen before. I've remade the page several times. The photos on the other pages are exactly where they should be once

  • Managing large numbers of SPAx102s

    What are service providers using to manage large numbers of 2102s or 3102s?  How are firmware versions controlled and rolled out?  What about configuration & password management? Thanks! Solved! Go to Solution.