D
D
Danya  2020-11-14 17:01:47
Python
Danya  , 2020-11-14 17:01:47

Sending messages to SMTP mail?

I can't figure out what the problem is
Here is the code:

import smtplib                                      # Импортируем библиотеку по работе с SMTP

# Добавляем необходимые подклассы - MIME-типы
from email.mime.multipart import MIMEMultipart      # Многокомпонентный объект
from email.mime.text import MIMEText                # Текст/HTML
from email.mime.image import MIMEImage              # Изображения

addr_from = "****************@gmail.com"           # Адресат
addr_to = "************@gmail.com"                       # Получатель
password = "*****************"                           # Пароль

msg = MIMEMultipart()                               # Создаем сообщение
msg['From'] = addr_from                             # Адресат
msg['To'] = addr_to                                 # Получатель
msg['Subject'] = 'Тема сообщения'                   # Тема сообщения

body = "Текст сообщения"
msg.attach(MIMEText(body, 'plain'))                 # Добавляем в сообщение текст

server = smtplib.SMTP('smtp.gmail.com', 587)        # Создаем объект SMTP
#server.set_debuglevel(True)                         # Включаем режим отладки - если отчет не нужен, строку можно закомментировать
server.starttls()                                   # Начинаем шифрованный обмен по TLS
server.login(addr_from, password)                   # Получаем доступ
server.send_message(msg)                            # Отправляем сообщение
server.quit()                                       # Выходим

Gives an error message:
smtplib.SMTPAuthenticationError: (535, b'5.7.8 Username and Password not accepted. Learn more at\n5.7.8  https://support.google.com/mail/?p=BadCredentials f18sm1728807lfc.198 - gsmtp')

It says that the password is not correct. But I checked everything, the password is correct!

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
soremix, 2020-11-14
@MrBrainop

https://www.google.com/settings/security/lesssecureapps
Enable

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question