123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- /**
- * mailout.php
- *
- * Copyright (c) 1999-2002 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * $Id$
- */
- chdir('..');
- include_once ('../src/validate.php');
- include_once ('../functions/page_header.php');
- include_once ('../src/load_prefs.php');
- displayPageHeader($color, $mailbox);
- echo '<P><TABLE align="center" width="75%" BGCOLOR="' . $color[0] ."\">\n"
- .'<TR><TH BGCOLOR="'. $color[9] . '">' . _("Mailinglist") . ' ' . _($action) .
- "</TH></TR>\n<TR><TD>";
- 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.");
- }
- printf( $out_string, htmlspecialchars($send_to) );
- echo '<form method="POST" action="../../src/compose.php">';
- /*
- * Identity support (RFC 2369 sect. B.1.)
- *
- * I had to copy this from compose.php because there doesn't
- * seem to exist a function to get the identities.
- */
- $defaultmail = htmlspecialchars(getPref($data_dir, $username, 'full_name'));
- $em = getPref($data_dir, $username, 'email_address');
- if ($em != '') {
- $defaultmail .= htmlspecialchars(' <' . $em . '>') . "\n";
- }
- echo '<P><CENTER>' . _("From:") . ' ';
- $idents = getPref($data_dir, $username, 'identities');
- if ($idents != '' && $idents > 1) {
- echo ' <select name=identity>' . "\n" .
- '<option value=default>' . $defaultmail;
- for ($i = 1; $i < $idents; $i ++) {
- echo '<option value="' . $i . '"';
- if (isset($identity) && $identity == $i) {
- echo ' SELECTED';
- }
- echo '>' . htmlspecialchars(getPref($data_dir, $username,
- 'full_name' . $i));
- $em = getPref($data_dir, $username, 'email_address' . $i);
- if ($em != '') {
- echo htmlspecialchars(' <' . $em . '>') . "\n";
- }
- }
- echo '</select>' . "\n" ;
- } else {
- echo $defaultmail;
- }
- echo '<BR>'
- . '<input type=hidden name="send_to" value="' . htmlspecialchars($send_to) . '">'
- . '<input type=hidden name="subject" value="' . htmlspecialchars($subject) . '">'
- . '<input type=hidden name="body" value="' . htmlspecialchars($body) . '">'
- . '<input type=hidden name="mailbox" value="' . htmlspecialchars($mailbox) . '">'
- . '<input type=submit name="send" value="' . _("Send Mail") . '"><BR><BR></CENTER>'
- . '</form></TD></TR></TABLE></P></BODY></HTML>';
- ?>
|