Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #!/bin/bash -x
  2.  
  3. # Personal script to send a bunch of emails from files
  4.  
  5. for filename in $@
  6. do
  7. cat $filename | msmtp -t --read-envelope-from --read-recipients -a doug@doughellmann.com
  8. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement