Sterc / FormIt

A dynamic form processing Snippet for MODX Revolution
https://docs.modx.com/current/en/extras/formit
33 stars 58 forks source link

Pass BCC / CC information to hooks #18

Closed markwillis82 closed 9 years ago

markwillis82 commented 10 years ago

At the moment, this information isn't presented to any hooks. I would like to add this functionality to Formz, but need the data passed through.

Bumme commented 9 years ago

What exactly do you want? With the following code you can access all you want:

$formit =& $hook->formit; $emailTo = $formit->config['emailTo']; // Or bcc, cc, everything you want.