django使用者郵箱啟用流程

2021-09-02 18:23:53 字數 1144 閱讀 8158

1.在setting.py中新增配置郵箱資訊:

email_backend = 『django.core.mail.backends.smtp.emailbackend』

email_host = 『smtp.163.com』 #伺服器

email_port = 25 #埠,一般情況下都為25

email_host_user = 『[email protected]』 #賬號

email_host_password = 『19951027abcd』 #授權碼

default_from_email = 『花生二手車[email protected]』 #郵箱來自

2.在views.py中匯入:

from django.core.mail import send_mail #匯入傳送郵件

import guazi.settings #匯入smtp

from itsdangerous import timedjsonwebsignatureserializer as tjs#匯入itsdangerous包

3.繼續配置views檔案:

ts =

tjs(guazi.settings.

secret_key

) trans = ts.

dumps

(user_name)

trans = trans.

decode()

print

(trans)

subject =

'這是瓜子二手車專案'

html_message =

"+trans+

"'>這是啟用郵件 "

)

注:先在cmd中安裝itsdangerous: pip install itsdangerous

java郵箱啟用

修改 commons email commons email 1.1 package com.wodwl.configuration import org.apache.commons.mail.emailattachment import org.apache.commons.mail.email...

django 郵箱校驗

本篇主要介紹django中比較常用校驗郵箱的方法 python 2.7 django 1.8.3 def validateemail email from django.core.validators import validate email from django.core.exceptions...

spring開發 郵箱註冊 啟用

align center size x large color red b spring開發 郵箱註冊 啟用 獲取驗證碼 b color size align spring開發 郵箱註冊 啟用 獲取驗證碼 1 url spring開發 郵箱註冊 啟用 獲取驗證碼 2 url spring開發 郵箱註...