sendEmail : 명령어로 메일을 보내자.
명령어로 메일을 보낼 때 인증을 고려하랴
메일폼을 신경쓰랴
첨부파일은 어떻게 하지.
이건 html 메일로 보내고 싶은데.
종합선물형 메일보내기 도구 sendEmail 이 있다.
메일 서버 프로그램 SendMail이 아니다.
메일 보내는 클라이언트 프로그램 sendEmail이다.
이건 perl로 짜여져 있고, 웬만한 배포판에는 다 있다.
Freshmeat
Hotscripts
FSF
For Debian
For Gentoo
For FreeBSD
For OS X
그냥
apt-get install -y sendEmail
우분투 16.04에서 설치 완료.
1) 텍스트 메세지
sendEmail -o tls=yes -f YourEmail@iwinv.kr -t SomeoneYoureEmailing@domain.com -s smtp.iwinv.kr:587 -xu YourEmail@iwinv.kr -xp YOURPASSWORD -u “Hello from sendEmail” -m “How are you? I’m testing sendEmail from the command line.” |
2) html 메일
sendEmail -o tls=yes -f YourEmail@iwinv.kr -t SomeoneYoureEmailing@domain.com -s smtp.iwinv.kr:587 -xu YourEmail@iwinv.kr -xp YOURPASSWORD -u “Hello from sendEmail” -m “How are you? I’m testing sendEmail from the command line.” -o message-content-type=html -o message-charset=UTF-8 |
3) 첨부파일
sendEmail -o tls=yes -f YourEmail@iwinv.kr -t SomeoneYoureEmailing@domain.com -s smtp.iwinv.kr:587 -xu YourEmail@iwinv.kr -xp YOURPASSWORD -u “Hello from sendEmail” -m “How are you? I’m testing sendEmail from the command line.” -a file01.ext file02.ext file03.ext |
이제 당신은 스패머가 될 준비가 됐는가?
그냥 메일링리스트나 경고알림용으로 사용하시길.
참고
http://caspian.dotconf.net/menu/Software/SendEmail/