<?php // Example // bool new Mail ( string $to , string $subject , string $message) if (new Mail('hide@address.com','Example send mail','<h2>Mail is send!</h2>')) { echo 'Mail is sent -> OK'; } else { echo 'Mail is not sent'; } ?>