If you have List Administrator permissions, you can create,
modify, and delete list-server mailing lists for your mail host.
To create a list:
-
In your Web browser, open the Web Messaging page for your
mail host and log on to your mail account.
On the Menu page, select
List Administration.
The List Administration page appears.
If necessary, select a mail host and click the
Update Lists button to see the current discussion lists for
the host.
In the Name box enter a name for the list.
The name must be from 3 to 23 characters in length, with no spaces
between characters. This is the name that will be used to send mail to
the list-server mailing list. For example, if you enter the name
"Birdinfo," users will send mail to the list by specifying the To
address: [email protected]
In the Description box, enter a description
of the list.
In the Administrator box, enter the user ID
of the person who will be the list administrator.
Click Create. The
List Parameters page appears.
To modify a list, click the Set
button next to the list or click the list name. The
List Parameters page appears.
To delete a list, click the Delete
button
To Setup auto signup use these Examples to
create the pages the examples are set to work in a sub folder called
list (www\list) (http://www.yourdomain.com/list):
################ SAVE AS mail_list.asp
#########################################
<html>
<head>
<title>Mailing List</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div align="center">
<p><b><font face="Arial, Helvetica, sans-serif">To subscribe to
a email list, choose the list you wish to subscribe to, enter your
full name and the email address you wish to subscribe. </font></b></p>
<form name="list_subscribe" method="post" action="list_sub.asp">
<table width="400" border="0" cellspacing="0" cellpadding="3">
<tr>
<td>Full Name:</td>
<td>
<input type="text" name="full_name" size="20">
</td>
</tr>
<tr>
<td>Email address:</td>
<td>
<input type="text" name="email_address" size="20">
</td>
</tr>
<tr>
<td>List you want to subscribe to:</td>
<td>
<select name="list_name">
'Replace Your list name here with the name of
your list'
<option value="your list name here"
selected>Main list</option>
</select>
</td>
</tr>
<tr>
<td colspan="2">
<div align="center">
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Submit2" value="Reset">
</div>
</td>
</tr>
</table>
</form>
<p> </p>
</div>
</body>
</html>
######################## End of mail_list.asp
########
####Save the below file as list_sub.asp as above re-place yourdomain.com with your domain
name#####
<%
strFullName = trim(request.form("full_name"))
strEmailAddie = trim(request.form("email_address"))
strListName = request.form("list_name")
Dim CRLF
CRLF = Chr(10) + Chr(13)
server.scripttimeout = 15
function sendMail(body, subject)
dim JMail, sendTo, CC
Set JMail = Server.CreateObject("JMail.SMTPMail")
' sendTo =
JMail.Silent = true
JMail.Logging = true
JMail.Priority = 1
JMail.ServerAddress = "YOUR-IP-HERE"
JMail.Sender = strEmailAddie
JMail.AddRecipient "[email protected]"
JMail.SenderName = strFullName
JMail.Subject = subject
JMail.body = strbody
JMail.execute
set jmail = nothing
end function
'******************* New user sends email to ************
dim strbody, strsubject
strbody= "Subscribe " & strListName &" " & strFullName &CRLF
'strsubject="Subscribe"
response.write strbody & "<BR>"
response.write strEmailAddie & "<BR>"
response.write strsubject
call sendmail(strbody, strsubject)
'***************************************************
%>
<html><body>Your Subscription was a Success!</body></html>
################# END OF list_sub.asp
#############
SAVE BOTH FILE'S IN THE LIST FOLDER YOU HAVE
CREATED
and thats it your done!
|