php Gmail spoofer script with sender email and recover email also has sender name with professional php code , when recever's get the mail show the picture of sender or real name
<?php $to = "Receiver@gmail.com"; $subject = "My subject"; $txt = "Hello world!"; $headers = "From: Sender@gmail.com" . "\r\n" . "CC: Sender@gmail.com"; mail($to,$subject,$txt,$headers); ?>