Answer the question
In order to leave comments, you need to log in
Why does the BeforePostingSendMail event not fire when sending Bitrix?
Found the BeforePostingSendMail event
Added the corresponding code to init.php:
AddEventHandler("subscribe", "BeforePostingSendMail", Array("MySubscribeClass", "BeforePostingSendMailHandler"));
class MySubscribeClass
{
function BeforePostingSendMailHandler($arFields)
{
$arFields["BODY"] = str_replace("#NAME#", "CustomData", $arFields["BODY"]);
return $arFields;
}
}
имя: #NAME#
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question