향후 편의를 위해 녹음해 주세요.
프로젝트 settings.py의 첫 번째 줄에 "EMAIL_USE_TLS = True" 내용을 추가합니다
스크립트 내용
script file: usermail.py #!/usr/bin/env python # -*- coding: utf-8 -*- from django.core.mail import EmailMultiAlternatives,get_connection from django.template.loader import render_to_string from django.conf import settings import sys reload(sys) sys.setdefaultencoding('utf-8') def userMail(tousers,obj,html_content): conn = get_connection() conn.username = 'ops' conn.password = '123456' conn.host = 'exchange.test.com' try: conn.open() EMAIL_HOST_USER = 'ops@test.com' subject, from_email, to = obj, EMAIL_HOST_USER, tousers msg = EmailMultiAlternatives(subject, html_content, from_email, to) msg.attach_alternative(html_content, "text/html") conn.send_messages([msg,]) conn.close() except Exception,e: print e
위 내용은 Django에서 HTML 이메일을 보내기 위해 exchange를 호출하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!