PHPMailer::addOrEnqueueAnAddress

Advertisement

Summery Summery

Add an address to one of the recipient arrays or to the ReplyTo array. Because PHPMailer can’t validate addresses with an IDN without knowing the PHPMailer::$CharSet (that can still be modified after calling this function), addition of such addresses is delayed until send().

Syntax Syntax

PHPMailer::addOrEnqueueAnAddress( string $kind, string $address, string $name )

Description Description

Addresses that have been added already return false, but do not throw exceptions.

Parameters Parameters

$kind

(Required) One of 'to', 'cc', 'bcc', or 'ReplyTo'

$address

(Required) The email address to send, resp. to reply to

$name

(Required)

Return Return

(boolean) true on success, false if address already used or invalid in some way

Source Source

File: wp-includes/class-phpmailer.php


			

Advertisement

Advertisement

Leave a Reply