I want to clone an email
But change the reply to address
How is it done?
But change the reply to address
How is it done?
I want to spoof the emailyou can not clone an email but you can spoof or create something similar to it in order to change the email address you need a sender that sends email and simply put replay to your other email and is done
Which sender do you suggest?you need a sender that will support replay to and you put the address you want the victim to replay to
send me your tg contact on pmWhich sender do you suggest?
@Iam_Zuwasend me your tg contact on pm
I want to spoof the email
Where it will be showing FROM the spoofed email and REPLYTO the email im using to receive replies
How can i do it?
<?php
// If you don't want a name attached to the email, just do:
// "From: spoofed@email.com\r\n ..."
$headers = "
From: Spoofed <spoofed@email.com>\r\n
Reply-To: your@email.com\r\n";
$subject = "your subject";
$message = "your message";
mail('their@email.com', $subject, $message, $headers);
?>
But it will enter spam folder?use php's mail() function and change the headers
Код:<?php // If you don't want a name attached to the email, just do: // "From: spoofed@email.com\r\n ..." $headers = " From: Spoofed <spoofed@email.com>\r\n Reply-To: your@email.com\r\n"; $subject = "your subject"; $message = "your message"; mail('their@email.com', $subject, $message, $headers); ?>
The email will appear from spoofed@email.com with the email name appearing as "Spoofed", and when replied it will go to your@email.com
if they're using a properly configured system like DMARC, but typically if you find a host that isn't blocked by spamhaus, it will land in inbox on normal emails.But it will enter spam folder?