Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Notification to multiple Emails #743

Closed
ricardomartos opened this issue Aug 30, 2018 · 1 comment
Closed

Notification to multiple Emails #743

ricardomartos opened this issue Aug 30, 2018 · 1 comment

Comments

@ricardomartos
Copy link

Hello.

I need to send the notification to multiple emails and I'm doing something like this

'mail' => [
            'to' => 'first@example.com;second@example.com',
        ],

And I also tried this:

'mail' => [
            'to' => 'first@example.com','second@example.com',
        ],

But It didn't work.

Any Idea?

Thanks.

@zOxta
Copy link

zOxta commented Aug 31, 2018

@ricardomartos You need to pass the emails in an array.

'mail' => [
    'to' => ['first@example.com', 'second@example.com']
],

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants