AddCC (Email subroutine): Difference between revisions
Jump to navigation
Jump to search
m (→Usage notes) |
m (→Syntax terms) |
||
Line 5: | Line 5: | ||
===Syntax terms=== | ===Syntax terms=== | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th> | <tr><th>email</th> | ||
<td>A previously declared Email object. | <td>A previously declared Email object. | ||
</td></tr> | </td></tr> | ||
Line 17: | Line 17: | ||
</td></tr></table> | </td></tr></table> | ||
==Usage notes== | ==Usage notes== | ||
<ul> | <ul> |
Revision as of 21:40, 5 March 2012
Add a CCd mail recipient (Email class)
Syntax
email:AddCC( name, [nickname])
Syntax terms
A previously declared Email object. | |
name | A string expression that contains an email address:
a userid, followed by an at sign (@), followed by a domain name. |
nickname | An optional string expression that contains a familiar name associated
with the e-mail address. |
Usage notes
- Mail servers should be able to accept up to at least 100 distinct recipients for a single mail message, though stricter limits may be imposed by some mail servers. The recipient count is the sum of all e-mail addresses added with the AddCc, AddBcc, and AddRecipient methods.
- Recipients added with the AddCc method appear in the “Cc:” header in the e-mail message.
- For an example that includes this method, see "Basic e-mail".