AddBCC (Email subroutine)

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Add a BCCd mail recipient (Email class)


Syntax

email:AddBCC( name, [nickname])

Syntax terms

email A previously declared Email object.
name A string expression that contains an e-mail 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. For AddBcc, this parameter is superfluous, but it is provided for compatibility with AddRecipient and Mail.

Usage notes

  • Mail servers should be able to accept as many as 100 or more 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 AddBcc, AddCC, and AddRecipient methods.
  • Recipients added with the AddBCC method do not appear in either the "To:" or "CC:" headers in the e-mail message.
  • The optional nickname parameter is provided only for compatibility with the AddRecipient and Mail methods. It is not sent as part of the e-mail message.
  • For an example that includes this method, see Basic e-mail example.

See also