If you wish to process the FormSnap form with your own php script (and bypass the FormSnap mailer altogether) you DO have that option. Simply supply your own POST URL in FormSnap Base settings.
On your endpoint PHP page ( where you are posting to ), add the following code to see what is getting posted.
<?php
print_r($_POST);
?>
0 Comments