Search
 
SCRIPT & CODE EXAMPLE
 

PHP

how to send multiple recipients in mail php

## "TO" PARAMETER OF MAIL FUNCTION IN PHP
Receiver, or receivers of the mail.

Some examples are:
- user@example.com
- user@example.com, anotheruser@example.com
- User <user@example.com>
- User <user@example.com>, Another User <anotheruser@example.com>
Comment

phpmailer send email to multiple addresses

$mail->AddAddress('person1@domain.com', 'Person One');
$mail->AddAddress('person2@domain.com', 'Person Two');
// ..
Comment

PREVIOUS NEXT
Code Example
Php :: Logging a Massage php 
Php :: PHP substr_replace — Replace text within a portion of a string 
Php :: Declare A PHP Array 
Php :: 0 
Php :: laravel 8 php version requirements 
Php :: avatar generator laravel 
Php :: php thread safe or not thread safe windows 
Php :: closure in php 
Php :: laravel env use other env variables 
Php :: php header 
Php :: php variables examples 
Php :: form submit self php isset 
Php :: restart php service windows 
Php :: cakephp 3 make migration 
Php :: how to write php in script file 
Php :: laravel, if -get() array is not emtpy 
Php :: controller class does not exist laravel 
Php :: Convert an Integer Into a String in PHP 
Php :: add data to the collection laravel 
Php :: laravel collection 
Php :: xampp downgrade php 
Php :: laravel jobs 
Php :: a non well formed numeric value encountered laravel 
Php :: PHP Example - AJAX and XML 
Php :: php how to check if user has a role on login 
Php :: elvis operator php 
Php :: what is laravel framework 
Php :: php artisan tinker get records 
Php :: codeigniter validate integer in php 
Php :: json encode unset array 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =