Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. sendmail johndoe@example.com < email.txt
  2.  
  3. sendmail johndoe@example.com < email.txt -a foo.pdf
  4.  
  5. #!/bin/sh
  6. (cat email.txt; uuencode foo.pdf foo.pdf)|/usr/sbin/sendmail -i -- johndow@example.com
  7.  
  8. cat file | /usr/lib/sendmail emailaddress
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement