Grumblesaurus
Grumblesaurus

Reputation: 3119

How to email from a webform?

I'm working on a website for my small office.

I want to design a form that the user can type in their basic information and the sort of question they need help with, then hit submit.

I would like for this form to then automatically send an email to someone at my office with the contents of the form included.

I was about to start writing this from scratch, but then I realized this has to be a problem that people have already solved.

You can see the page I'm talking about here.

Thanks!

Upvotes: 0

Views: 51

Answers (1)

kritya
kritya

Reputation: 3362

You need to use a server side language such as php.

Get the form data

And then use its in built functions such as mail() [docs]

Upvotes: 1

Related Questions