Coder Social home page Coder Social logo

oh-my-email's Introduction

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='')]
    )

oh-my-email's People

Contributors

lucky8875 avatar dependabot[bot] avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.