1👍
In your view code you’ve got the form data available already, mail = form.cleaned_data['mail']
gives you the email address (if you do a print form.cleaned_data you’ll see in your console all the form data.
Source:stackexchange.com
1👍
In your view code you’ve got the form data available already, mail = form.cleaned_data['mail']
gives you the email address (if you do a print form.cleaned_data you’ll see in your console all the form data.