ASPSMARTMAIL : DOCUMENTATION |
Recipient,
CC, BCC, ReplyTo Objects Last modified: february 1st, 2000 © 2000 Advantys. All rights reserved. |
A Recipient, CC, BCC or ReplyTo object is added containing
the address and/or the name of a person you specified.
The Recipient Object corresponding to a person who receive your message.
The CC Object corresponding to a person who receive in Carbon Copy your message.
The BCC Object corresponding to a person who receive in Blind Carbon Copy your
message.
The ReplyTo Object corresponding to a person who is in the reply list of person of
the email client.
The Address property sets or returns the email address of an person.
Syntax
.Address
Return Value
Returns a String value which is the email address of a person you have added.Examples
<%
Response.Write (mySmartMail.Recipients.Item(1).Address & "<BR>")
- or -
for i=1 to mySmartMail.Recipients.Count
Response.write mySmartMail.Recipients.Item(i).Address & "<BR>"
next
- or -
for each Item In mySmartMail.Recipients
Response.write Item.Address & "<BR>"
next
%>
The Name property sets or returns the name of an person.
Syntax
.Name
Return Value
Returns a String value which is the name of a person you have added.Examples
<%
Response.Write (mySmartMail.CCs.Item(1).Name & "<BR>")
- or -
for i=1 to mySmartMail.CCs.Count
Response.write mySmartMail.CCs.Item(i).Name & "<BR>"
next
- or -
for each Item In mySmartMail.CCs
Response.write Item.Name & "<BR>"
next
%>
© 2000 Advantys. All rights reserved.