smtp를 설정하고 메일을 보내는 방법은 무엇입니까?

smtp를 설정하고 메일을 보내는 방법은 무엇입니까?

저는 라즈베리 파이를 처음 사용합니다.

나는 그것에 Raspian 운영 체제를 설치했습니다. 내 Gmail 계정을 사용하여 이메일을 보내고 싶습니다. 명령줄 인터페이스와 PHP 스크립트에서 보내고 싶습니다.

나는 이 가이드를 따랐다. http://iqjar.com/jar/sending-emails-from-the-raspberry-pi/

링크의 1, 2, 3, 4 단계를 따랐습니다.

아래 코드를 사용하여 이메일을 보낼 때

echo "Test text" | mail -s "Test Mail" [email protected]

아무 일도 일어나지 않고 화면에 아무 것도 인쇄되지 않으며 이메일도 수신되지 않습니다.

"realiases"에서 "mail.google"을 "smtp.gmail"로 바꾸면 다음과 같은 메시지가 나타납니다.

send-mail: Cannot open mail.google.com:587

또는

send-mail: Server didn't like our AUTH LOGIN (530 5.7.0 Must issue a STARTTLS command first. ml2sm3592928igb.10 - gsmtp)

이 문제를 어떻게 해결할 수 있나요?

아래 두 파일은 다음과 같습니다.

ssmtp.conf

#
# Config file for sSMTP sendmail
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
# root=postmaster

# The place where the mail goes. The actual machine name is required no 
# MX records are consulted. Commonly mailhosts are named mail.domain.com
# mailhub=mail

# Where will the mail seem to come from?
#rewriteDomain=

# The full hostname
hostname=raspberrypi

# Are users allowed to set their own From: address?
# YES - Allow the user to specify their own From: address
# NO - Use the system generated From: address
FromLineOverride=YES


[email protected]
mailhub=smtp.gmail.com:587
[email protected]
AuthPass=mypass
UseSTARTTLS=YES

재정의하다

# sSMTP aliases
# 
# Format:   local_account:outgoing_address:mailhub
#
# Example: root:[email protected]:mailhub.your.domain[:port]
# where [:port] is an optional port number that defaults to 25.

root:[email protected]:mail.google.com:587

관련 정보