Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Contact Me PHP Help Reply To: Contact Me PHP Help

#184358
Ilan Firsov
Participant

On the PHP side:


<?php
    $success = mail('[email protected]', 'this is a test', 'content');
    if(!$success) {
        echo 'email not sent';
    }
?>