Tutorial: Sending an Email using Python

2023-10-05 05:30
文章标签 python using sending email

本文主要是介绍Tutorial: Sending an Email using Python,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Tutorial: Sending an Email using Python

In this tutorial, we’ll learn how to send emails, including attachments, using Python.

Table of Contents:

  • Setting Up
  • Crafting the Email
  • Sending the Email
  • Using Gmail as the SMTP Server

Setting Up

Before we begin, we need to set up the email configurations:

import smtplib
from email.message import EmailMessage
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.mime.base import MIMEBase
from email import encoders# Email configurations
SMTP_SERVER = 'smtp.your-email-provider.com'
SMTP_PORT = 587  # Common ports: 587 for TLS, 465 for SSL, 25 for non-secure
SENDER_EMAIL = 'your-email@example.com'
SENDER_PASSWORD = 'your-email-password'
RECEIVER_EMAIL = 'receiver-email@example.com'

Replace the placeholders with your actual email configurations.


Crafting the Email

  1. Creating a Basic Email:
msg = EmailMessage()
msg['From'] = SENDER_EMAIL
msg['To'] = RECEIVER_EMAIL
msg['Subject'] = 'Your Subject Here'
msg.set_content('Your email body text here.')
  1. Adding Attachments:

If you want to attach a file, use the following code:

filename = 'path-to-your-file.txt'
with open(filename, 'rb') as attachment:file_data = attachment.read()file_type = mimetypes.guess_type(filename)[0]file_name = os.path.basename(filename)msg.add_attachment(file_data, maintype='application', subtype='octet-stream', filename=file_name)

Sending the Email

Now that our email is ready, let’s send it:

with smtplib.SMTP(SMTP_SERVER, SMTP_PORT) as server:server.starttls()  # Upgrade the connection to secure encrypted SSL/TLSserver.login(SENDER_EMAIL, SENDER_PASSWORD)server.send_message(msg)

Using Gmail as the SMTP Server

If you’re using Gmail as your email provider, there are a couple of additional considerations:

  • SMTP Settings for Gmail:
SMTP_SERVER = 'smtp.gmail.com'
SMTP_PORT = 587  # Use 465 for SSL
  • Less Secure Apps:

For Gmail to allow third-party apps and scripts to send emails, you might need to enable “Less Secure Apps” in your Gmail settings. To enable:

  1. Go to Google Account.
  2. Click on “Security” on the left-hand side.
  3. Scroll down to the “Less secure app access” section.
  4. Toggle the switch to ON.

Note: Always turn off “Less Secure Apps” after you’re done to ensure your account’s security.


Conclusion

Sending emails via Python is straightforward and powerful, especially when integrating into automation tasks, notifications, or reporting systems. Always ensure you’re following best security practices, especially when handling email credentials.

The Complete Codes

import smtplib
from email.message import EmailMessage
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.mime.base import MIMEBase
from email import encodersdef send_email_with_attachment():# Email configurationsSMTP_SERVER = 'smtp.example.com'  # Your SMTP serverSMTP_PORT = 587  # Port for SMTP (commonly 587 for TLS, 465 for SSL, 25 for non-secure)SENDER_EMAIL = 'you@example.com'  # Your email addressSENDER_PASSWORD = 'yourpassword'  # Your email passwordRECEIVER_EMAIL = 'colleague@example.com'  # Your colleague's email address# Create a multipart emailmsg = MIMEMultipart()msg['From'] = SENDER_EMAILmsg['To'] = RECEIVER_EMAILmsg['Subject'] = 'Log File from Latest Run'# Email bodybody = 'Dear colleague, attached is the log file from our latest run.'msg.attach(MIMEText(body, 'plain'))# Attach the filefilename = 'output.txt'with open(filename, 'rb') as attachment:part = MIMEBase('application', 'octet-stream')part.set_payload(attachment.read())encoders.encode_base64(part)part.add_header('Content-Disposition', f'attachment; filename= {filename}')msg.attach(part)# Sending the emailwith smtplib.SMTP(SMTP_SERVER, SMTP_PORT) as server:server.starttls()  # Upgrade the connection to secure encrypted SSL/TLSserver.login(SENDER_EMAIL, SENDER_PASSWORD)server.sendmail(SENDER_EMAIL, RECEIVER_EMAIL, msg.as_string())if __name__ == "__main__":send_email_with_attachment()

这篇关于Tutorial: Sending an Email using Python的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/3521

相关文章

Conda与Python venv虚拟环境的区别与使用方法详解

《Conda与Pythonvenv虚拟环境的区别与使用方法详解》随着Python社区的成长,虚拟环境的概念和技术也在不断发展,:本文主要介绍Conda与Pythonvenv虚拟环境的区别与使用... 目录前言一、Conda 与 python venv 的核心区别1. Conda 的特点2. Python v

Python使用python-can实现合并BLF文件

《Python使用python-can实现合并BLF文件》python-can库是Python生态中专注于CAN总线通信与数据处理的强大工具,本文将使用python-can为BLF文件合并提供高效灵活... 目录一、python-can 库:CAN 数据处理的利器二、BLF 文件合并核心代码解析1. 基础合

Python使用OpenCV实现获取视频时长的小工具

《Python使用OpenCV实现获取视频时长的小工具》在处理视频数据时,获取视频的时长是一项常见且基础的需求,本文将详细介绍如何使用Python和OpenCV获取视频时长,并对每一行代码进行深入解析... 目录一、代码实现二、代码解析1. 导入 OpenCV 库2. 定义获取视频时长的函数3. 打开视频文

Python中你不知道的gzip高级用法分享

《Python中你不知道的gzip高级用法分享》在当今大数据时代,数据存储和传输成本已成为每个开发者必须考虑的问题,Python内置的gzip模块提供了一种简单高效的解决方案,下面小编就来和大家详细讲... 目录前言:为什么数据压缩如此重要1. gzip 模块基础介绍2. 基本压缩与解压缩操作2.1 压缩文

Python设置Cookie永不超时的详细指南

《Python设置Cookie永不超时的详细指南》Cookie是一种存储在用户浏览器中的小型数据片段,用于记录用户的登录状态、偏好设置等信息,下面小编就来和大家详细讲讲Python如何设置Cookie... 目录一、Cookie的作用与重要性二、Cookie过期的原因三、实现Cookie永不超时的方法(一)

Python内置函数之classmethod函数使用详解

《Python内置函数之classmethod函数使用详解》:本文主要介绍Python内置函数之classmethod函数使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录1. 类方法定义与基本语法2. 类方法 vs 实例方法 vs 静态方法3. 核心特性与用法(1编程客

Python函数作用域示例详解

《Python函数作用域示例详解》本文介绍了Python中的LEGB作用域规则,详细解析了变量查找的四个层级,通过具体代码示例,展示了各层级的变量访问规则和特性,对python函数作用域相关知识感兴趣... 目录一、LEGB 规则二、作用域实例2.1 局部作用域(Local)2.2 闭包作用域(Enclos

Python实现对阿里云OSS对象存储的操作详解

《Python实现对阿里云OSS对象存储的操作详解》这篇文章主要为大家详细介绍了Python实现对阿里云OSS对象存储的操作相关知识,包括连接,上传,下载,列举等功能,感兴趣的小伙伴可以了解下... 目录一、直接使用代码二、详细使用1. 环境准备2. 初始化配置3. bucket配置创建4. 文件上传到os

使用Python实现可恢复式多线程下载器

《使用Python实现可恢复式多线程下载器》在数字时代,大文件下载已成为日常操作,本文将手把手教你用Python打造专业级下载器,实现断点续传,多线程加速,速度限制等功能,感兴趣的小伙伴可以了解下... 目录一、智能续传:从崩溃边缘抢救进度二、多线程加速:榨干网络带宽三、速度控制:做网络的好邻居四、终端交互

Python中注释使用方法举例详解

《Python中注释使用方法举例详解》在Python编程语言中注释是必不可少的一部分,它有助于提高代码的可读性和维护性,:本文主要介绍Python中注释使用方法的相关资料,需要的朋友可以参考下... 目录一、前言二、什么是注释?示例:三、单行注释语法:以 China编程# 开头,后面的内容为注释内容示例:示例:四