AddCC (Email subroutine): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Created page with "This callable method lets you add an SMTP mail recipient to the SMTP request that is sent to the server. ==AddCc syntax== <p class="pre"> %email:AddCc(name, [nickname]) </p> ==...")
 
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
This callable method lets you add an SMTP mail recipient
{{Template:Email:AddCC subtitle}}
to the SMTP request that is sent to the server.
 
==AddCc syntax==
==Syntax==
<p class="pre"> %email:AddCc(name, [nickname])
{{Template:Email:AddCC syntax}}
</p>
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%email</th>
<tr><th>email</th>
<td>A previously declared Email object.
<td>An <var>Email</var> object.
</td></tr>
</td></tr>
<tr><th>name</th>
<tr><th>name</th>
<td>A string expression that contains an email address:
<td>A string expression that contains an email address: a userid, followed by an at sign (@), followed by a domain name.
a userid, followed by an at sign (@), followed by a domain name.
</td></tr>
</td></tr>
<tr><th>nickname</th>
<tr><th>nickname</th>
<td>An optional string expression that contains a familiar name associated
<td>An optional string expression that contains a familiar name associated with the e-mail address.
with the e-mail address.
   
   
</td></tr></table>
</td></tr></table>
==Usage Notes==
 
==Usage notes==
<ul>
<ul>
<li>Mail servers should be able to accept up to at least 100 distinct recipients
<li>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
for a single mail message, though stricter limits may be imposed by some
mail servers.
mail servers.
The recipient count is the sum of all e-mail addresses added with the AddCc,
The recipient count is the sum of all e-mail addresses added with the <var>AddCc</var>,
AddBcc, and AddRecipient methods.
<var>AddBcc</var>, and <var>AddRecipient</var> methods.
<li>Recipients added with the AddCc method appear in the &ldquo;Cc:&rdquo; header
<li>Recipients added with the <var>AddCc</var> method appear in the "Cc:" header
in the e-mail message.
in the e-mail message.
<li>For an example that includes this method, see [[SMTP Helper#Basic e-mail|"Basic e-mail"]].
<li>For an example that includes this method, see [[Email class#Basic e-mail|"Basic e-mail"]].
</ul>
</ul>
==See also==
{{Template:Email:AddCC footer}}

Latest revision as of 20:19, 14 August 2012

Add a CCd mail recipient (Email class)


Syntax

email:AddCC( name, [nickname])

Syntax terms

email An 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".

See also