I would like to add a newsletter signup to my website which has a backend set up with Django. How should I go about handling email information when submitted to my site? Should I create a new model just for emails? Is there a way I can take emails inputted into my site and have them saved dynamically to my sendgrid account?
I would like to use sendgrid for all of my email campaigns and I would prefer having my data sent there instantly rather than saving in a model table and then manually inputting the contacts into my account.