리눅스 명령줄에서 메일 보내기

리눅스 명령줄에서 메일 보내기

Linux 터미널에서 Gmail 계정으로 메일을 보낼 수 있습니까?

가능하다면 어떤 구성이 필요합니까?

mailx와 sendmail로 시도했지만 작동하지 않습니다.

나는 또한 이런 mutt로 시도했다

echo "test" | mutt -s this-is-my-subjest [email protected]

하지만 소용없어...

CentOS 6.2를 사용하고 있습니다.

답변1

sendEmail을 사용하는 것이 좋습니다.

sendEmail-1.56 by Brandon Zehm <[email protected]>

Synopsis:  sendEmail -f ADDRESS [options]

  Required:
    -f ADDRESS                from (sender) email address
    * At least one recipient required via -t, -cc, or -bcc
    * Message body required via -m, STDIN, or -o message-file=FILE

  Common:
    -t ADDRESS [ADDR ...]     to email address(es)
    -u SUBJECT                message subject
    -m MESSAGE                message body
    -s SERVER[:PORT]          smtp mail relay, default is localhost:25

  Optional:
    -a   FILE [FILE ...]      file attachment(s)
    -cc  ADDRESS [ADDR ...]   cc  email address(es)
    -bcc ADDRESS [ADDR ...]   bcc email address(es)
    -xu  USERNAME             username for SMTP authentication
    -xp  PASSWORD             password for SMTP authentication

  Paranormal:
    -b BINDADDR[:PORT]        local host bind address
    -l LOGFILE                log to the specified file
    -v                        verbosity, use multiple times for greater effect
    -q                        be quiet (i.e. no STDOUT output)
    -o NAME=VALUE             advanced options, for details try: --help misc
        -o message-content-type=<auto|text|html>
        -o message-file=FILE         -o message-format=raw
        -o message-header=HEADER     -o message-charset=CHARSET
        -o reply-to=ADDRESS          -o timeout=SECONDS
        -o username=USERNAME         -o password=PASSWORD
        -o tls=<auto|yes|no>         -o fqdn=FQDN


  Help:
    --help                    the helpful overview you're reading now
    --help addressing         explain addressing and related options
    --help message            explain message body input and related options
    --help networking         explain -s, -b, etc
    --help output             explain logging and other output options
    --help misc               explain -o options, TLS, SMTP auth, and more

그것은 나에게 아주 잘 작동합니다. Gmail에서 TLS를 사용하는 것을 잊지 마세요. 해당 옵션과 함께 이메일을 보낼 서버의 세부 정보를 제공해야 합니다.

    -s SERVER[:PORT]          smtp mail relay, default is localhost:25
    -xu  USERNAME             username for SMTP authentication
    -xp  PASSWORD             password for SMTP authentication

첨부 파일을 추가할 수 있고 스크립트에 쉽게 배치할 수 있으므로 나에게 가장 좋습니다.

사용 예:

sendEmail -f [email protected] -t [email protected] -s test -m messageBody -s smtp.gmail.com -xu [email protected] -xp xxxxxpass -o tls=auto
Aug 17 16:21:37 z sendEmail[22420]: Email was sent successfully!

답변2

터미널 mail프로그램이 그 일을 해야 합니다. 일반적으로 사용자/프로그램이 시스템 내부에서 로컬로 메시지를 보낼 수 있도록 "즉시" 작동합니다.

입력 하고 Return 키를 누르세요. 그런 다음 메시지를 입력하고 Ctrl-D를 사용하여 닫거나 보냅니다.mail -s 'subject line' [email protected]

답변3

일반적으로 특정 구성이 필요하지 않습니다. centos에는 기본적으로 메일 서버가 있습니다.

제가 기억하는 명령은 mailto정보(보낸 사람, 제목 등...)를 입력하고 텍스트를 입력한 후 Ctrl+D를 입력하면 EOT가 표시됩니다.

메일 서버는 이와 유사한 사용자 정보를 사용 from : user@pcname하지만 저는 오늘 Linux를 사용하고 있지 않으므로 확인할 수 없습니다.

이것이 도움이 되기를 바랍니다.

편집하다 :

O'reilly 매뉴얼 페이지에 대한 링크가 있습니다.거기

관련 정보