by backslash_16 on 1/6/19, 9:33 PM with 3 comments
To start the discussion - I've done a lot of Python and .Net development so my plan is to create a server rendered page with either .Net Core or Flask and roll my own contact form and email collection function.
I see there are a lot of landing page templates, another idea is to check the licensing on them and see if I can stuff them into a jinja2 page and add the functionality I need for submitting a form securely (all I need is email and a few other things).
by tixocloud on 1/7/19, 7:24 AM
Templates are the way to go but even more importantly is the speed at which you can make changes to these templates and to adapt to the context of the customer.
The main focus should be on gathering intelligence so the best stack would be one that you spend the most amount of time to gather as much intelligence as you can and no more. Go with what you’re familiar with and leverage frameworks as much as possible. Your time is precious so avoid mucking about with new/untested tech if you don’t have to.
FWIW, we rolled our own contact and email function based on Django but only to send the data into multiple systems. At one point, we began with Mailchimp and still do for a few forms.