Python code kiểm tra gửi mail smtp AWS SES

Dưới đây là đoạn code giúp bạn check gửi mail từ creadential của aws: import smtplib import email.utils from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText # Replace sender@example.com with your “From” address. # This address must be verified. SENDER = ‘no-reply@hocdevops.com’ SENDERNAME = ‘Sender Name’ # Replace recipient@example.com with a “To” address. If your […]

Read More