Php excel form split to send specified mailbox

there is a requirement that an excel table automatically split each specified row and then specify the corresponding mailbox to be sent

how to find

Php
May.16,2021

about the open source library of php processing excel:

if the PHP version is greater than 5.6, You can use phpoffice/phpspreadsheet :
composer: https://packagist.org/package.
github: https://github.com/PHPOffice/.
document: https://phpspreadsheet.readth.

otherwise, you can use phpoffice/phpexcel :
composer:
github:
https://github.com/PHPOffice/.


Import the excel table with phpexcel, then read the table data, traverse each row of data, and send an email.
method for importing excel: php Import excel form

Menu