• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/preset/templatebase.php
  • Класс: BitrixSenderPresetTemplateBase
  • Вызов: TemplateBase::update
static function update($templateName, $html)
{
	$result = false;
	$fullPathOfFile = Loader::getLocal(static::LOCAL_DIR_TMPL . bx_basename($templateName) . '.php');
	if ($fullPathOfFile)
		$result = File::putFileContents($fullPathOfFile, $html);

	return $result;
}