Django发送邮件代理服务器配置

settings.py下配置

python 复制代码
MAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.qq.com'
EMAIL_HOST_USER = '66897079@qq.com'
EMAIL_HOST_PASSWORD = 'aavlzhzvqorbcahc'

EMAIL_PORT = 465
EMAIL_USE_SSL = True

发送邮件

python 复制代码
    message = "<p>尊敬的用户您好:</p><p>欢迎注册达达商城。</p>"
    from django.core.mail import send_mail

    send_mail(
        subject="Subject",
        message=None,
        from_email='66897079@qq.com',
        recipient_list=['66897079@qq.com'],
        html_message=message
    )

另外

message可以用render_to_string渲染

此时,需要添加templates配置

python 复制代码
TEMPLATES = [
	{
		.......
		'DIRS': [BASE_DIR / 'templates'],
		......
	}
]
相关推荐
万事大吉CC15 分钟前
【3】深入剖析 Django 之 MTV:路径引用与资源加载机制
数据库·django·sqlite
YJlio5 小时前
2026年5月5日60秒读懂世界:五一档票房、油价调整、汤姆斯杯夺冠与全球风险观察
数据分析·django·飞书·仪表盘·多维表格·图表联动
FYKJ_201015 小时前
springboot校园兼职平台--附源码02041
java·javascript·spring boot·python·eclipse·django·php
心静财富之门1 天前
Django 超详细初级教程(零基础可学)
python·django
ZC跨境爬虫1 天前
Python Django开发者转向微信小程序:从架构理解到第一行代码的完整准备指南
开发语言·python·ui·微信小程序·django
绘梨衣5471 天前
django-elasticsearch-dsl-drf 搜索服务搭建教学文档
python·elasticsearch·django
星光开发者1 天前
基于springboot电动汽车租赁管理系统-计算机毕设 附源码 11217
javascript·spring boot·mysql·django·php·html5·express
Muyuan19982 天前
28.Paper RAG Agent 开发记录:修复 LLM Rerank 的解析、Fallback 与可验证性
linux·人工智能·windows·python·django·fastapi
Muyuan19983 天前
27.RAG 系统中的上下文充分性判断:从 Chunk 数量、FAISS 距离到 LLM Relevance Gate
python·django·pdf·fastapi·faiss
程序媛徐师姐3 天前
Python基于Django的小区果蔬预定系统【附源码、文档说明】
python·django·小区果蔬预定系统·果蔬预定·python小区果蔬预定系统·小区果蔬预定·python果蔬预定系统