Use PHP to send an Email
Sending an email through PHP is surprisingly simple and straightforward. Just remember a few simple requirements, and watch the apostrophes. Here’s the code in entirety: $message = "Hi !<br/><br/>This is my email message and a link: <a href='http://kimjoyfox.com'>KimJoyFox</a><br/><br/>Visit Kim Joy Fox for tutorials, information, etc.<br /><br/>Sincerely,<br /><br/>Me"; $to = $email; $headers = 'MIME-Version: 1.0' . "rn"; [...]