How to Fake/Spoof Email? Help!!

TechnoPhobe

Newbie
Joined
Jun 5, 2014
Messages
3
Reaction score
0
Hi, I am looking for a way or program that would help me SEND an email with a email domain that I can create without registering for it. Basically spoofing an email.

REASON: I have to send a fake email to myself from my university to show my exceptional grades. Reason being for this is that my parents want to see the email for my grades & I need to make it believable.

Can anyone help? Thank you so much!! Very stressed.
 
Not sure if this still works, but PHP Mail may be able to help, it will probably end in spam though:

Code:
<?php
$to      = '[email protected]';
$subject = 'Subject';
$message = 'This is a test';
$headers = 'From: [email protected]' . "\r\n" .
   'Reply-To: [email protected]' . "\r\n" .
   'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
 
Hi, I am not very experienced in programming and softwares. Could you do it for me & I would pay you an amount?
 
emkeis mailer works great but there is one problem. every email lands in the spam folder. :/ someone know another mailer?
 
You need to use a server that does not result in it landing in the spam folder. I can teach you how to do it correctly, just PM me.
 
Back
Top