[Fixed]-Sending a email from a Bootstrap model + Django

1👍

You have method defined inside your <form> but there is no action – how your page would know where to send your data? You need to add action attribute with proper URL to your view like

    <form method="POST" action="{% url 'your_view_url' %}">

You should also take a look at the Forms Django’s documentation section – there is even a simple example of how you should write your form’s html

Leave a comment