ericlbarnes / Statamic-email-form

Email form plugin for Statamic
http://ericlbarnes.com/blog/statamic-email-form-plugin
Other
36 stars 6 forks source link

Message includes Submit Field #11

Closed tjdraper closed 11 years ago

tjdraper commented 11 years ago

Am I doing something wrong? I looked around in the plugin but I’m really bad with PHP. Basically the email message includes the submit button data as:

submit: Submit

Any way to make it not do that?

ericlbarnes commented 11 years ago

Change line 123 to something like this:

if ($key != "submit") {
  $message .= $key.": ".$value."\r\n";
}
tjdraper commented 11 years ago

Perfect! Thank you!!!