Sender Email Unlimited in PHP for loop

Sender Email Unlimited in PHP for loop


Email Sender

Email , array,  array count ,  Send Email


Example Link: https://drive.google.com/file/d/1GYo1dRA_694o9yc3-DWZJaYwkiUu0yst/view?usp=sharing


Code Example:

<!DOCTYPE html>
<html>
<body>

<?php

$Email = array("Volvo","BMW","Toyota");

$tot = count($Email);

for ($x = 1; $x <= $tot;) {
echo "Send Email $x <br>";
$x++;
}

echo $tot;

?>



</body>
</html>



HOME