Initialize $output
[squirrelmail.git] / plugins / listcommands / mailout.php
index 97e71c1be36be7f5f16eece3ec3c751235cd714e..08d729ec8e3a35824c64b8e315e2a99d5f21d1c2 100644 (file)
@@ -1,38 +1,43 @@
 <?php
-/*
- * mailout.php part of listcommands plugin
- * last modified: 2002/01/12 by Thijs Kinkhorst
+/**
+ * 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');
+include_once('../functions/html.php');
 
 displayPageHeader($color, $mailbox);
 
-?>
-<P>
-<TABLE align="center" width="75%" BGCOLOR="<?php echo $color[0]; ?>">
-<TR><TH BGCOLOR="<?php echo $color[9] . '">' . _("Mailinglist") . ' ' . _($action); ?></TH></TR>
-<TR><TD>
-<?php
+echo html_tag('p', '', 'left' ) .
+html_tag( 'table', '', 'center', $color[0], 'border="0" width="75%"' ) . "\n" .
+    html_tag( 'tr',
+        html_tag( 'th', _("Mailinglist") . ' ' . _($action), '', $color[9] )
+    ) .
+    html_tag( 'tr' ) .
+    html_tag( 'td', '', 'left' );
 
 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.");
+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.");
+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 subscribed to this list. It will try to unsubscribe the adress below.");
+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">';
+echo '<form method="post" action="../../src/compose.php">';
 
 /*
  * Identity support (RFC 2369 sect. B.1.)
@@ -46,17 +51,16 @@ $em = getPref($data_dir, $username, 'email_address');
 if ($em != '') {
     $defaultmail .= htmlspecialchars(' <' . $em . '>') . "\n";
 }
-echo '<P><CENTER>' . _("From:");
+echo html_tag('p', '', 'center' ) . _("From:") . ' ';
 
-$idents = getPref($data_dir, $username, 'identities'); 
-if ($idents != '' && $idents > 1)
-{
-    echo ' <select name=identity>' . "\n" .
-         '<option value=default>' . $defaultmail;
+$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 ' selected';
         }
         echo '>' . htmlspecialchars(getPref($data_dir, $username,
                                                 'full_name' . $i));
@@ -64,23 +68,18 @@ if ($idents != '' && $idents > 1)
         if ($em != '') {
             echo htmlspecialchars(' <' . $em . '>') . "\n";
         }
-    } 
+    }
     echo '</select>' . "\n" ;
 
-}
-else
-{
+} 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>';
 ?>
-<BR>
-<input type=hidden name="send_to" value="<?php echo htmlspecialchars($send_to); ?>">
-<input type=hidden name="subject" value="<?php echo htmlspecialchars($subject); ?>">
-<input type=hidden name="body" value="<?php echo htmlspecialchars($body); ?>">
-<input type=hidden name="mailbox" value="<?php echo htmlspecialchars($mailbox); ?>">
-<input type=submit name="send" value="<?php echo _("Send Mail"); ?>"><BR><BR></CENTER>
-</form>
-</TD></TR></TABLE>
-</P>
-</BODY>
-</HTML>
\ No newline at end of file