function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Andrew SturtAndrew Sturt 

Sending an email using a button on a Visualforce page

I have a very simple page. Here's the code for that:
<apex:page>
   {!$user.firstname} {!$user.lastname} <br></br>
   {!$user.email} <br></br>
   {!$user.phone} <br></br>
   {!$user.title} 
</apex:page>
I need to add a button to send the page's content in an email.

How do I do that?