In this
section I will go over some of the template code and what they do.
***ok a new thing here to look at, as there are 10 emails you can
edit if there is only one in the first box with id 1 then no drop
down box will be displayed , so if you then decided to put a new email
in the email box with id 2-10 the drop down will show with the users
emails.
also make sure you still include the {emails} tag
in your template or else the email will not be sent;
beacuse it includes a hidden field with the first email. ***
i hope
you understand what i mean. if not just leave the {emails}
tag in place.
Template
Code |
Description |
{fname1}
|
snice
the first field is default this would display
( Name ) where ever you put it. |
{fname2}
|
snice
the secnd field is default this would display
( E-mail ) where ever you put it. |
{fname3} |
like
name and e-mail what ever you call the text box it will display
the name where ever you put it |
{fname4} |
like
name and e-mail what ever you call the text box it will display
the name where ever you put it |
{fname5} |
like
name and e-mail what ever you call the text box it will display
the name where ever you put it |
{fname6} |
like
name and e-mail what ever you call the text box it will display
the name where ever you put it |
{fname7} |
like
name and e-mail what ever you call the text box it will display
the name where ever you put it |
{fname8} |
like
name and e-mail what ever you call the text box it will display
the name where ever you put it |
{fname9} |
like
name and e-mail what ever you call the text box it will display
the name where ever you put it |
{fname10} |
like
name and e-mail what ever you call the text box it will display
the name where ever you put it |
{field1}
|
ok
this is the actual textbox this one is default for name
so as you may have seen in the template that comes with the script
when you first upload it. it goes with {fname1} |
{field2}
|
ok
this is the actual textbox this one is default for email
so as you may have seen in the template that comes with the script
when you first upload it. it goes with {fname2} |
{field3} |
this
text box is customizable |
{field4}
|
this
text box is customizable |
{field5}
|
this
text box is customizable |
{field6}
|
this
text box is customizable |
{field7}
|
this
text box is customizable |
{field8}
|
this
is a textarea box |
{field9}
|
this
is a textarea box |
{field10} |
this
is a textarea box |
{emails} |
this
is a drop down menu it will display the emails that you have saved. |
{subjects}
|
this
is a drop down menu it will display the subjects that you have
saved. |
{submit} |
this
is your submit button put it where ever you want |
now here is a small example on how you would do this :
-------------------------------------------------------------
<table width="400" border="0" cellspacing="0"
cellpadding="0">
<tr>
<td width="60"><font size="1" face="Verdana,
Arial, Helvetica, sans-serif">{fname1}
</font></td>
<td width="340"><font size="1" face="Verdana,
Arial, Helvetica, sans-serif">{field1}
</font> </td>
</tr>
<tr>
<td><font size="1" face="Verdana, Arial, Helvetica,
sans-serif">{fname2}
</font></td>
<td><font size="1" face="Verdana, Arial, Helvetica,
sans-serif">{field2}</font></td>
</tr>
<tr>
<td><font size="1" face="Verdana, Arial, Helvetica,
sans-serif">To:</font></td>
<td><font size="1" face="Verdana, Arial, Helvetica,
sans-serif">{emails}
</font></td>
</tr>
<tr>
<td height="12"><font size="1" face="Verdana,
Arial, Helvetica, sans-serif">subject</font></td>
<td><font size="1" face="Verdana, Arial, Helvetica,
sans-serif">{subjects}</font></td>
</tr>
<tr>
<td><font size="1" face="Verdana, Arial, Helvetica,
sans-serif">{fname8}
</font></td>
<td><font size="1" face="Verdana, Arial, Helvetica,
sans-serif">{field8}
</font></td>
</tr>
<tr>
<td colspan="2"><div align="center"><font
size="1" face="Verdana, Arial, Helvetica, sans-serif">{submit}</font></div></td>
</tr>
</table>
-------------------------------------------------------------
thats a basic example it would show up like this: