Home › Forums › Back End › Contact Me PHP Help › Reply To: Contact Me PHP Help
September 23, 2014 at 6:55 am
#184358
Participant
On the PHP side:
<?php
$success = mail('[email protected]', 'this is a test', 'content');
if(!$success) {
echo 'email not sent';
}
?>