Complete the following Django form to include:
- A
subjectwith a maximum length of 100 characters - An optional, boolean,
cc_myselffield - A
senderfield that will be validated as a correctly formatted email address
from django import forms
class ContactForm(forms.Form):
message = forms.CharField()