Have been trying to send form instance (questionsform.html, which is a multipage form, dozens of data fields) by a PHP script
-is there any standard code to use which will capture form content & forward by email?
Anyone know how to send HTML multipage form with PHP script
Moderator: General Moderators
Re: Anyone know how to send HTML multipage form with PHP scr
$_POST has the data. Do whatever you want to do with it so that it is readable, then email it using the built-in mail() or a library like SwiftMailer or PHPMailer.
Re: Anyone know how to send HTML multipage form with PHP scr
Thanks requinix, much appreciated -by any chance is there sample code for this available (using PHPmailer)?
Re: Anyone know how to send HTML multipage form with PHP scr
Take a look at their home on Github: they have a number of examples there, not to mention the documentation.
Re: Anyone know how to send HTML multipage form with PHP scr
Awesome, thanks!