Skip to main content

simple send email in python

Project description

oh-my-email

什么是 oh-my-email

库如其名,oh-my-email 封装常用的邮件发送功能,使得在项目中发送邮件更加方便。

支持的功能

  • 简洁邮件发送API
  • 支持自定义发件人昵称
  • 支持抄送
  • 支持HTML
  • 支持附件

使用方式

安装 oh-my-email

pip install oh-my-email
from oh_my_email import (
    OhMyEmail, 
    OhMyEmailConfig, 
    OhMyEmailContact, 
    OhMyEmailPlainContent, 
    OhMyEmailHtmlContent
)
from oh_my_email.vo import UrlAttachment, FileAttachment

# 初始化配置
conf = OhMyEmailConfig(
    mail_host='',
    mail_port=25,
    mail_user='your email',
    mail_pass='your password',
)
ome = OhMyEmail(conf=conf)

# 发送纯文本邮件
with ome as cl:
    cl.send(
        subject='test subject',
        sender=OhMyEmailContact('sender email', 'sender name'),
        receiver=[OhMyEmailContact('receiver email', 'receiver name')],
        content=OhMyEmailPlainContent("This is a test email"),
    )

# 发送带抄送人和暗抄送人纯文本邮件
with ome as cl:
    cl.send(
        subject='test subject',
        sender=OhMyEmailContact('sender email', 'sender name'),
        cc=[OhMyEmailContact('cc email', 'cc name')],
        bcc=[OhMyEmailContact('bcc email', 'bcc name')],
        receiver=[OhMyEmailContact('receiver email', 'receiver name')],
        content=OhMyEmailPlainContent("This is a test email"),
    )


# 发送HTML邮件(会将html中包含的图片链接转为base64)
with ome as cl:
    img1 = "https://img9.doubanio.com/view/photo/s_ratio_poster/public/p2554525534.webp"
    text = f"""
    <p>Python 邮件发送测试...</p>
    <p>图片演示:</p>
    <p><img src="{img1}"></p>
    """
    cl.send(
        subject='test subject',
        sender=OhMyEmailContact('sender email', 'sender name'),
        receiver=[OhMyEmailContact('receiver email', 'receiver name')],
        content=OhMyEmailHtmlContent(text),
    )

# 发送带附件的邮件
with ome as cl:
    img1 = "https://img9.doubanio.com/view/photo/s_ratio_poster/public/p2554525534.webp"
    text = f"""
    <p>Python 邮件发送测试...</p>
    <p>图片演示:</p>
    <p><img src="{img1}"></p>
    """
    cl.send(
        subject='test subject',
        sender=OhMyEmailContact('sender email', 'sender name'),
        receiver=[OhMyEmailContact('receiver email', 'receiver name')],
        content=OhMyEmailHtmlContent(text),
        attachment=[UrlAttachment(url='', filename=''), FileAttachment(filepath='', filename='')]
    )

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oh-my-email-0.1.0.tar.gz (4.2 kB view details)

Uploaded Source

File details

Details for the file oh-my-email-0.1.0.tar.gz.

File metadata

  • Download URL: oh-my-email-0.1.0.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for oh-my-email-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b844d08ad9c30d7f71c6bf76c08c51f290c61239e133c315c1aab8e4af91d500
MD5 161cdc1099ce32a048ea5cb41afb4865
BLAKE2b-256 890e1c0103b6cf67b9a97d0e0f3d7d63b1784cdb576dbefd13f641d0a21eaaca

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page