我想建立一個網上書店,我試圖發送一封確認郵件到新簽約用戶,但由於某些原因的電子郵件中,無法發送發送電子郵件,我也嘗試過使用的應用程序特定密碼在Gmail中。Django的不通過Gmail
一個幫助將不勝感激。
這裏是我的電子郵件代碼settings.py
EMAIL_BACKEND = 'django_smtp_ssl.SSLEmailBackend'
EMAIL_HOST='smtp.gmail.com'
EMAIL_HOST_USER='[email protected]'
EMAIL_HOST_PASSWORD='jgpcjiajvklxraof'
EMAIL_PORT=587
EMAIL_USE_TLS = True
DEFAULT_FROM_EMAIL = '[email protected]'
代碼在我Views.py
from .models import Book
def index (request):
return render (request,'template.html')
def store (request):
return render (request, 'store.html')
def store (request):
count = Book.objects.all().count()
context = {
'count':count,
}
return render (request,'store.html',context)
你能加入錯誤的堆棧跟蹤,同時發送電子郵件編輯你的問題? –
這就是問題所在。我沒有收到任何錯誤。當我點擊註冊按鈕時,它會轉到它顯示「激活電子郵件已發送」的頁面,但沒有收到任何郵件:( –
好的。您能否至少添加您觸發電子郵件的代碼,這將有助於快速調試問題 –