123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- /**
- * mailout.php
- *
- * @copyright © 1999-2006 The SquirrelMail Project Team
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @version $Id$
- * @package plugins
- * @subpackage listcommands
- */
- /**
- * Path for SquirrelMail required files.
- * @ignore
- */
- require('../../include/init.php');
- /* SquirrelMail required files. */
- require(SM_PATH . 'functions/identity.php');
- require(SM_PATH . 'functions/forms.php');
- require(SM_PATH . 'plugins/listcommands/functions.php');
- /* get globals */
- sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
- sqgetGlobalVar('send_to', $send_to, SQ_GET);
- sqgetGlobalVar('subject', $subject, SQ_GET);
- sqgetGlobalVar('body', $body, SQ_GET);
- sqgetGlobalVar('action', $action, SQ_GET);
- displayPageHeader($color, $mailbox);
- $fieldsdescr = listcommands_fieldsdescr();
- switch ( $action ) {
- case 'help':
- $out_string = _("This will send a message to %s requesting help for this list. You will receive an emailed response at the address below.");
- break;
- case 'subscribe':
- $out_string = _("This will send a message to %s requesting that you will be subscribed to this list. You will be subscribed with the address below.");
- break;
- case 'unsubscribe':
- $out_string = _("This will send a message to %s requesting that you will be unsubscribed from this list. It will try to unsubscribe the adress below.");
- break;
- default:
- error_box(sprintf(_("Unknown action: %s"),htmlspecialchars($action)));
- // display footer (closes html tags) and stop script execution
- $oTemplate->display('footer.tpl');
- 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');
- $idents = get_identities();
- echo html_tag('p', '', 'center' ) . _("From:") . ' ';
- if (count($idents) > 1) {
- echo '<select name="identity">';
- foreach($idents as $nr=>$data) {
- echo '<option value="' . $nr . '">' .
- htmlspecialchars(
- $data['full_name'].' <'.
- $data['email_address'] . ">\n");
- }
- echo '</select>' . "\n" ;
- } else {
- echo htmlspecialchars('"'.$idents[0]['full_name'].'" <'.$idents[0]['email_address'].'>');
- }
- echo '<br />' .
- addHidden('send_to', $send_to) .
- addHidden('subject', $subject) .
- addHidden('body', $body) .
- addHidden('mailbox', $mailbox) .
- addSubmit(_("Send Mail"), 'send');
- ?>
- <br /><br />
- </form></td></tr></table></p></body></html>
|