• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/sender/presetmailing.php
  • Класс: BitrixSaleSenderPresetMailing
  • Вызов: PresetMailing::getMailTemplate
static function getMailTemplate(array $params = null)
{
	if(!isset($params['TITLE']))
	{
		$params['TITLE'] = '%TITLE%';
	}

	if(!isset($params['TEXT']))
	{
		$params['TEXT'] = '%TEXT%';
	}

	return '

#SITE_NAME#: ' . $params['TITLE'] . '

' . $params['TEXT'] . '

' . Loc::getMessage('PRESET_MAIL_TEMPLATE_REGARDS', array('%LINK_START%' => '', '%LINK_END%' => '')) . '

' . Loc::getMessage('PRESET_MAIL_TEMPLATE_UNSUB') . '

'; }