Sending bulk email in laravel from select options

asdasdasdasdasdasdasdasd
@csrf

[email protected] [email protected] [email protected] [email protected] [email protected] [email protected] In Controller
public function sendBulkEmail(Request $request){

try {

$recipients = explode(',', $request->recipient);

$mail = new PHPMailer(true);

//Server settings                                    

$mail->setFrom('[email protected]', 'Sender');
        foreach ($recipients as $recipient) {
            $mail->addAddress($recipient);
        }

$mail->addReplyTo('[email protected]', 'Information');

$mail->isHTML(true);                  
$mail->Subject = 'Request';
$mail->Body    = 'this test message';


}

If you are at the point of shipping items, you would not be searching/selecting items and adding them to a list/table. You would already have an order, with a list of items and their quantity. The only selecting of items for shipping would involve checking each item as you put it into a shipping-container, so that you will know which items/quantities are in each of multiple possible shipping-containers, which would also record the status change of each item/quantity on the order, that it has been packed for shipping.

Sponsor our Newsletter | Privacy Policy | Terms of Service