I think it is possible to change the "From" address. See the documentation on the notification here:
http://www.gravityhelp.com/documentation/page/Notification
You could use the gform_pre_submission_filter: http://www.gravityhelp.com/documentation/page/Gform_pre_submission_filter
In the example on that page, you can change the "From" email address by changing line 14 to this:
[php]
// this presumes that input field 4 holds the email
// address you want to use as the FROM
// address for the admin notification
$form['notification']['from'] = rgpost('input_4');
or
[php]
$form['notification']['from'] = 'scott@sellinggreaterlouisville.com';
Does that accomplish what you're looking for?
Posted 12 years ago on Thursday October 25, 2012 |
Permalink