header image
homeproductssupportresourcespartnersabout uscontact ussite map

Adding and Deleting Members

Special Note: By design, the mailing list software will never add the same identical email address to a list that the email address is already on. As a result, you do not need to worry about having duplicate email addresses on your list.

Adding Your Members Initially

If you like, Net Atlantic can add all your list members for you initially at no cost. Email your list to support@netatlantic.com, in plain text format, one email address per line. Any of these formats is acceptable:

bob@somewhere.com (Bob Somebody)
bob@somebody.com
Bob Somebody <bob@somebody.com>
bob@somebody.com Bob Somebody

We can also accept lists in Excel, Access, Word and other popular formats. If you prefer to add your list members yourself, see next.

Adding New List Members with the Control Panel

  1. Under the web control panel click on the MEMBERS button;
  2. Click on the CREATE MANY MEMBERS button;
  3. Paste your members into the Email section of the web page;
  4. Scroll down to the bottom and click on the SAVE button.

The amount of email addresses which can be pasted in at one time can be as high as 5000-10,000 or more. However, depending on your Internet connection and other variables, it can sometimes take longer. Sometimes it can make more sense to simply use add and delete commands by email. See below.

Adding List Members with Email Commands

To add email addresses to your mailing list by email, send email from:

yourname<youremailaddress> to lyris@relay.netatlantic.com

No subject needed.

In the body of the message type (note: each email address should be on its own line)

login yourpassword
add yourlistname >>

emailaddress1@domain.com
emailaddress2@domain.com
emailaddress3@domain.com

Note: Use the command above if you want your new subscribers to receive your list welcome message by email. If you do NOT wish to have your new list members get your welcome message, include the word quiet with your message, as below (note: each email address should be on its own line):

login yourpassword
add yourlistname quiet >>

emailaddress1@domain.com
emailaddress2@domain.com
emailaddress3@domain.com

Deleting List Members with Email Commands

To delete email addresses to your mailing list by email, send email from: yourname <youremailaddress> to lyris@relay.netatlantic.com

No subject needed.
In the body of the message type (note: each email address should be on its own line)

login yourpassword
delete yourlistname >>

emailaddress1@domain.com
emailaddress2@domain.com
emailaddress3@domain.com

Note: Deleted list members will receive an email message notifying them that they have been removed from the list. If you do not want them to know they have been deleted, use the "quiet" command as below (note: each email address should be on its own line):

login yourpassword
delete yourlistname quiet >>

emailaddress1@domain.com
emailaddress2@domain.com
emailaddress3@domain.com

Additional ways to ADD and DELETE Subscribers

Here are four ways to add / remove subscribers from your list:

Sample forms
Use our sample forms on your own web site to subscribe and unsubscribe members in real time:
sample-forms.html
Server Web Form
You can link from your web site to this web page which allows people to easily join your list. You can also simply add people yourself one at a time with this web form.
http://relay.netatlantic.com/cgi-bin/lyris.pl?join=yourlistname
To join your list with Email Admin Commands
(note: these can also be used from within any web page form on your site)
email based subscribe: send a blank message to join-yourlistname@relay.netatlantic.com
email based unsubscribe: send a blank message to leave-yourlistname@relay.netatlantic.com
HTML code for adding members from your web site
To create a subscribe box and allow visitors to your web site to join your mailing list, copy and paste this code anywhere on a web page on your web site (note: you can change colors and fonts in this html, and you can remove the name field if not needed)

<form method="post" action="http://www.netatlantic.com/cgi-bin/subscribe.pl">
   <input type="hidden" name="recipient" value="join yourlistname@relay.netatlantic.com">
   <input type="hidden" name="subject" value="Join yourlistname">
   <input type=hidden name="redirect" value="subscription-confirmation.html">
   <input type=hidden name="print_config" value="email,subject,realname">

   <table border="0" cellpadding="0" cellspacing="0" width="160">
       <tr>
         <td width="40%" bgcolor="#E1E1E1">
free email newsletter:<br>
           <input type="text" name="realname" size="17" maxlength="34" value="your name"><br>
           <input type="text" name="email" size="17" maxlength="34" value="your email"><br>
           <input type="submit" value="Subscribe">
         </td>
       </tr>
   </table>
</form>