The Add method adds an item to a collection.
Collection.Add([key][, value])
The following example adds an item to the Receivers collection.
<%
Mail.Receivers.Add "jim@emilltest.com"
%>
The following example adds an item with a key to the Receivers collection.
<%
Mail.Receivers.Add "jim", "jim@emilltest.com"
sJimEmail = Mail.Receivers("jim")
%>
An alternative method to add an item is use an explicit key. e.g:
Mail.Receivers("joe") = "joe@emilltest.com"