Answer the question
In order to leave comments, you need to log in
A couple of questions about smtplib?
Hello. There is a code:
import smtplib
# ===== === === входим в акаунт === === =====
my_gmail = '[email protected]' # моя почта
my_pass = 'password' # мой пароль
# === устанавливаем связь с Gmail ===
port = 587
smtp_gmail = 'smtp.gmail.com'
smt = smtplib.SMTP(smtp_gmail, port)
smt.starttls()
# === отправляем сообщение
smt.login(my_gmail, my_pass)
recipient = '[email protected]'
send_gmail = '[email protected]'
message_text = 'hello!'
smt.sendmail(recipient, send_gmail, message_text)
Answer the question
In order to leave comments, you need to log in
1) how to send Russian letters?
from email.mime.text import MIMEText
msg = MIMEText('Привет!', 'plain', 'utf-8')
smt.sendmail(recipient, send_gmail, msg.as_string())
2) how can I make sure that instead of my mail, the recipient sees only the name of the company, or just another mail?
The first question has already been answered, I will answer the second:
2) how can I make sure that instead of my mail, the recipient sees only the name of the company, or just another mail?
message = 'From: Любой набор символов' + my_gmail + '\nSubject: Тема письма\n\n Текст письма'
smt.sendmail(recipient, send_gmail, message)
Любой набор символов <[email protected]>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question