Skip to content
Advertisement

multiple recipients email sent with htmlspecialchars() expects parameter error

I have a form, in which when I fill and submit, it’s sent email to multiple recipient, when I do that I get this error htmlspecialchars() expects parameter 1 to be string, array given (View: C:wamp64wwwstarresourcesviewsemailsemail_invite_template.blade.php below is my code:

The Form

JavaScript

SendEmail

JavaScript

Controller

JavaScript

Email Template (email_invite_template.php)

JavaScript

Thanks

Advertisement

Answer

You can’t just pass forward $data on every iteration. You need to construct your own array containing each name and email pair:

JavaScript

Now, you’re sending an array with 2 elements, dname and demail, each representing a pair of array elements:

JavaScript

This is 100% dependant on you entering the same number of dname and demail values into your input though. If you have 3 emails, but only 2 names, this won’t work.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement