echo"(1) This is a very plain and simple email for testing purposes."| mail -s "First testmail" -r localsender1@example.local first-mail@example.local
echo"(2) This is a very plain and simple email for testing purposes."| mail -s "Second testmail" -r localsender2@example.local second-mail@example.local
echo"(3) This is a very plain and simple email for testing purposes."| mail -s "Third testmail" -r localsender3@example.local third-mail@example.local
echo"(4) This is a very plain and simple email for testing purposes."| mail -s "Fourth testmail" -r localsender4@example.local fourth-mail@example.local
echo"(5) This is a very plain and simple email for testing purposes."| mail -s "Fifth testmail" -r localsender5@example.local fifth-mail@example.local
echo"Let's try an email with an attachment"| mail -s "This email contains an attachment" -r attachments@example.local -A /vagrant/main.go files@example.local
echo"I send to multiple people at once"| mail -s 'Hey all!' -r 'multirecip@example.local' one@example.local two@example.local three@example.local four@example.local five@example.local