AddCC (Email subroutine)

From m204wiki
Revision as of 21:30, 5 July 2011 by JAL2 (talk | contribs) (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> ==...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This callable method lets you add an SMTP mail recipient to the SMTP request that is sent to the server.

AddCc syntax

%email:AddCc(name, [nickname])

Syntax terms

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