Skip to content

🚀 Getting Started

Welcome to EmailWidget! This section will help you get started with EmailWidget and create your first professional email report in just a few minutes.

⚡ 30-Second Experience

If you want to experience the powerful features of EmailWidget right away, here's the simplest example:

Python
from email_widget import Email, TextWidget
from email_widget.core.enums import TextType

# 创建邮件
email = Email("我的第一份报告")

# 添加标题
email.add_widget(
    TextWidget()
    .set_content("欢迎使用 EmailWidget! 🎉")
    .set_type(TextType.TITLE_LARGE)
)

# 导出HTML文件
file_path = email.export_html("my_first_report.html")
print(f"报告已生成: {file_path}")

Run this code and you'll get a beautiful HTML email file!

我的第一份报告

In addition to getting started, you might also be interested in these resources:

📚 Deep Learning

🤝 Get Help