Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- echo -n "Sender email > "
- read SENDER
- echo -n "Recipient email> "
- read RECIPIENT
- echo -n "Subject > "
- read SUBJECT
- echo -n "Message > "
- read MESSAGE
- echo -n "PHP url > "
- read URL
- curl --data "from=$SENDER&to=RECIPIENT&subject=SUBJECT&message=MESSAGE" $URL
- echo "Done."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement