vtenext/modules/Newsletter/widgets/TemplateEmailPreview.php
2021-04-28 20:10:26 +02:00

26 lines
1.2 KiB
PHP

<?php
/*************************************
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
* SPDX-License-Identifier: AGPL-3.0-only
************************************/
/* crmv@80155 */
$small_page_title = getTranslatedString('LBL_EMAIL_TEMPLATE','Settings');
$small_page_buttons = '
<script type="text/javascript" src="modules/Newsletter/Newsletter.js"></script>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="100%" style="padding:5px"></td>
<td align="right" style="padding: 5px;" nowrap>
<input class="crmbutton small save" onclick="submittemplate('.$_REQUEST['record'].','.$_REQUEST['templateid'].',\''.$_REQUEST["templatename"].'\')" type="button" title="'.getTranslatedString('LBL_SELECT').'" value="'.getTranslatedString('LBL_SELECT').'">
<input class="crmbutton small cancel" onclick="history.back()" type="button" title="'.getTranslatedString('LBL_BACK').'" value="'.getTranslatedString('LBL_BACK').'">
</td>
</tr>
</table>';
include('themes/SmallHeader.php');
$preview = true;
include('modules/Settings/detailviewemailtemplate.php');
include('themes/SmallFooter.php');
?>