"Mutt"의 두 판 사이의 차이

ph
이동: 둘러보기, 검색
(새 문서: == mail through command line == <pre>mutt -s "Test from mutt" user@yahoo.com < /tmp/message.txt mutt -s "Test from mutt" user@yahoo.com < /tmp/message.txt -a /tmp/file.jpg echo "This...)
 
4번째 줄: 4번째 줄:
 
echo "This is the body" | mutt -s "Testing mutt" user@yahoo.com -a /tmp/XDefd.png</pre>
 
echo "This is the body" | mutt -s "Testing mutt" user@yahoo.com -a /tmp/XDefd.png</pre>
 
[https://www.garron.me/en/go2linux/send-mail-gmail-mutt.html]
 
[https://www.garron.me/en/go2linux/send-mail-gmail-mutt.html]
 +
<br>html로 보내려면,
 +
<pre>mutt -e "set content_type=text/html" Email address -s "subject" < test.html</pre>
 +
[http://stackoverflow.com/a/6805839]

2017년 4월 9일 (일) 06:19 판

mail through command line

mutt -s "Test from mutt" user@yahoo.com < /tmp/message.txt
mutt -s "Test from mutt" user@yahoo.com < /tmp/message.txt -a /tmp/file.jpg
echo "This is the body" | mutt -s "Testing mutt" user@yahoo.com -a /tmp/XDefd.png

[1]
html로 보내려면,

mutt -e "set content_type=text/html" Email address -s "subject" < test.html

[2]