Last active
May 1, 2018 07:46
-
-
Save sheronov/75ca79245273b1efdf8a697a891027b7 to your computer and use it in GitHub Desktop.
Смена темы письма в FormIT данными из формы или хука
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[!AjaxForm? | |
&snippet=`FormIt` | |
&emailUseFieldForSubject=`1` //обязательный параметр, который будет подставдять тему письма из параметра subject | |
&hooks=`dynamicSubject,FormItSaveForm,spam,email` | |
... | |
]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//берём из вызова сниппета тему письма | |
$emailSubject = $hook->formit->config['emailSubject']; | |
if($phone = $hook->getValue('phone')) { | |
//прибавляем к теме телефон | |
$emailSubject .= ' '.$phone; | |
} | |
$hook->setValue('subject',$emailSubject); | |
return true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment