temp.armaclans.com/email1.php
<?php
mail('armaclans@gmail.com', 'the subject', 'the message', null,'-fme@thedevinmiller.com');
?>
temp.armaclans.com/email2.php
<?php
$to = 'armaclans@gmail.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: me@thedevinmiller.com' . "\r\n"...