আমি রাস্পবেরি পাইতে নতুন।
আমি এটিতে রাস্পিয়ান ওএস ইনস্টল করেছি। আমি আমার জিমেইল অ্যাকাউন্টটি ব্যবহার করে এটি থেকে ইমেলগুলি প্রেরণ করতে চাই। আমি কমান্ড লাইন ইন্টারফেস এবং পিএইচপি স্ক্রিপ্ট থেকে প্রেরণ করতে চাই।
আমি এই গাইড অনুসরণ করে। http://iqjar.com/jar/sending-emails-from-the-raspberry-pi/
আমি লিঙ্কটি থেকে 1,2,3,4 পদক্ষেপ করেছি।
আমি যখন নীচের কোডটি ব্যবহার করে কোনও ইমেল প্রেরণ করি
echo "Test text" | mail -s "Test Mail" me2@gmail.com
কিছুই ঘটে না, স্ক্রিনে মুদ্রিত কিছুই নেই, এবং আমি ইমেলটি পাই না।
"প্রতিশোধ" - এ, আমি যদি "স্মার্টপিএমএল" এর সাথে "মেইল গুগল" প্রতিস্থাপন করি তবে আমি একটি বার্তা ফিরে পেয়ে যাব
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
root=me@gmail.com
mailhub=smtp.gmail.com:587
AuthUser=me@gmail.com
AuthPass=mypass
UseSTARTTLS=YES
revaliases
# sSMTP aliases
#
# Format: local_account:outgoing_address:mailhub
#
# Example: root:your_login@your.domain:mailhub.your.domain[:port]
# where [:port] is an optional port number that defaults to 25.
root:me@gmail.com:mail.google.com:587
UseSTARTTLS=NO
?