X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Flistcommands%2Fmailout.php;h=9db99ae3e7567a60df463cdcdc60fc472b15579b;hp=dd9e5de180ee7a551e8ab7891cf0628cd5a41c17;hb=1977ab5587905d225c6288141b82f7a6e3d29d02;hpb=1b858d863d345dc7bcc4bed0c169091b084b3a0c diff --git a/plugins/listcommands/mailout.php b/plugins/listcommands/mailout.php index dd9e5de1..9db99ae3 100644 --- a/plugins/listcommands/mailout.php +++ b/plugins/listcommands/mailout.php @@ -3,7 +3,7 @@ /** * mailout.php * - * @copyright © 1999-2006 The SquirrelMail Project Team + * @copyright 1999-2010 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package plugins @@ -28,7 +28,6 @@ sqgetGlobalVar('body', $body, SQ_GET); sqgetGlobalVar('action', $action, SQ_GET); displayPageHeader($color, $mailbox); -$fieldsdescr = listcommands_fieldsdescr(); switch ( $action ) { case 'help': @@ -47,41 +46,19 @@ switch ( $action ) { exit; } -echo html_tag('p', '', 'left' ) . - html_tag( 'table', '', 'center', $color[0], 'border="0" width="75%"' ) . "\n" . - html_tag( 'tr', - html_tag( 'th', _("Mailinglist") . ': ' . $fieldsdescr[$action], '', $color[9] ) - ) . - html_tag( 'tr' ) . - html_tag( 'td', '', 'left' ); - -printf($out_string, '"' . htmlspecialchars($send_to) . '"'); - -echo addForm(SM_PATH . 'src/compose.php', 'post'); - +$out_string = sprintf($out_string, '"' . htmlspecialchars($send_to) . '"'); $idents = get_identities(); +$fieldsdescr = listcommands_fieldsdescr(); +$fielddescr = $fieldsdescr[$action]; -echo html_tag('p', '', 'center' ) . _("From:") . ' '; +$oTemplate->assign('out_string', $out_string); +$oTemplate->assign('fielddescr', $fielddescr); +$oTemplate->assign('send_to', $send_to); +$oTemplate->assign('subject', $subject); +$oTemplate->assign('body', $body); +$oTemplate->assign('mailbox', $mailbox); +$oTemplate->assign('idents', $idents); -if (count($idents) > 1) { - echo '' . "\n" ; -} else { - echo htmlspecialchars('"'.$idents[0]['full_name'].'" <'.$idents[0]['email_address'].'>'); -} +$oTemplate->display('plugins/listcommands/mailout.tpl'); +$oTemplate->display('footer.tpl'); -echo '
' . - addHidden('send_to', $send_to) . - addHidden('subject', $subject) . - addHidden('body', $body) . - addHidden('mailbox', $mailbox) . - addSubmit(_("Send Mail"), 'send'); -?> -

-

\ No newline at end of file