Form not populating data

You’re not creating an instance of a form here. This should be something like form = EmailNewForm(request.POST)

Also, you’re not passing an instance as a parameter to that constructor, either, so there will not be an existing instance for you to check.