0
我已經包括下面的代碼如何通過點擊按鈕在HTML中運行Django/python腳本文件?
from django.core.mail import send_mail
send_mail('Subject here', 'Here is the message.', '[email protected]', ['[email protected]'], fail_silently=False)
運行在控制檯的文件一個簡單的.py文件完美的作品,我能接收電子郵件,但我不知道如何腳本可以在運行一個HTML按鈕點擊。有人可以給我任何指針嗎?我還需要對manage.py文件做些什麼嗎?我是新手,請幫助。