Last active
April 23, 2019 13:35
-
-
Save ipascual/199b596c11c50766aa48 to your computer and use it in GitHub Desktop.
Unix - Postfix - Sendmail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# List queue | |
postqueue -p | |
# Send queue | |
postqueue -f | |
# OR | |
sendmail -q | |
# Delete queue | |
postsuper -d ALL | |
postsuper -d ID | |
# Send Email | |
echo "body of your email" | mail -s "This is a Subject" -a "From: [email protected]" [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment