How to send mail from any email(Gmail,yahoo etc) to another(sounds like magic but it actually works)
You can send email from any email except from email of companies like: Google,Facebook,etc.
Step 1: First we need a SMTP server to send mails so, a free service is needed.we use: sendinblue . Create a free account of sendinblue.
Step 2: Now from the free service navigate to SMTP Token and create a new SMTP Token.
Step 3: Now after creating the new token you get: smtp server, port, login(which is your email) and a unique key for your newly created token.
Step 4: Now start your kali linux and in terminal type commands below:
sendemail -s smtp-relay.sendinblue.com:yourport -xu your_email_of_smtp -xp your_unique_key -f "sender_example@gmail.com" -t "receiver'example@gmail.com" -u "Topic" -m "Message" -o message-header="From: Name of Sender <sender'example@gmail.com>"
Above -o message-header command is used to make is look more authentic and real.
Please do not use this for illegal purpose. This is for educational purpose only.
Comments
Post a Comment