source: products/vendor/Products.MailHost/current/src/Products/MailHost/dtml/addMailHost_form.dtml @ 3356

Last change on this file since 3356 was 3356, checked in by fenix, 12 years ago

Load 2.13.1 into vendor/Products.MailHost?/current.

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1<dtml-var manage_page_header>
2
3<dtml-var "manage_form_title(this(), _,
4           form_title='Add MailHost',
5           help_product='MailHost',
6           help_topic='Mail-Host_Add.stx'
7           )">
8
9<p class="form-help">
10MailHost object provide a way to send email from Zope code in DTML or
11Python Scripts. <em>SMTP host</em> is the name of the mail server machine.
12<em>SMTP port</em> is the port on which the mail server is running the
13SMTP service.
14</p>
15
16<form action="manage_addMailHost" method="post">
17<table cellspacing="0" cellpadding="2" border="0">
18  <tr>
19    <td align="left" valign="top">
20    <div class="form-label">
21    Id
22    </div>
23    </td>
24    <td align="left" valign="top">
25    <input type="text" name="id" size="40" value="MailHost" />
26    </td>
27  </tr>
28  <tr>
29    <td align="left" valign="top">
30    <div class="form-optional">
31    Title
32    </div>
33    </td>
34    <td align="left" valign="top">
35    <input type="text" name="title" size="40" />
36    </td>
37  </tr>
38  <tr>
39    <td align="left" valign="top">
40    <div class="form-label">
41    SMTP Host
42    </div>
43    </td>
44    <td align="left" valign="top">
45    <input type="text" name="smtp_host" size="40" value="localhost" />
46    </td>
47  </tr>
48  <tr>
49    <td align="left" valign="top">
50    <div class="form-label">
51    SMTP Port
52    </div>
53    </td>
54    <td align="left" valign="top">
55    <input type="text" name="smtp_port:int" size="4" value="25" />
56    </td>
57  </tr>
58  <tr>
59    <td align="left" valign="top">
60    </td>
61    <td align="left" valign="top">
62    <div class="form-element">
63    <input class="form-element" type="submit" name="submit"
64     value=" Add " />
65    </div>
66    </td>
67  </tr>
68</table>
69</form>
70
71<dtml-var manage_page_footer>
Note: See TracBrowser for help on using the repository browser.