We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug when try
ray()->mailable(new ClassOne($this)) ->mailable(new ClassTwo($this));
only result of ClassTwo will appear on ray app
ClassTwo
Versions Ray version (you can see this in "About Ray"): 1.15.0
You can use composer show to get the version numbers of:
composer show
PHP version: Laravel version (if applicable): 8.48.1
To Reproduce dispatch mail using ray()->mailable() in chain call
ray()->mailable()
Expected behavior this must be same result in none chaining call, like sample below
ray()->mailable(new ClassOne($this)); ray()->mailable(new ClassTwo($this));
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
You should use
In the meantime, I'll look into allowing multiple mailable arguments
Sorry, something went wrong.
You should use ray()->mailable(new ClassOne($this)); ray()->mailable(new ClassTwo($this)); In the meantime, I'll look into allowing multiple mailable arguments
yes ill use that way, I just notice this and maybe it could help
I did not notice, i crated issue in different repository,
anyways thanks to this spatie/laravel-ray#204, now has a nicer way
Nielsvanpach
No branches or pull requests
Describe the bug
when try
only result of
ClassTwo
will appear on ray appVersions
Ray version (you can see this in "About Ray"): 1.15.0
You can use
composer show
to get the version numbers of:PHP version:
Laravel version (if applicable): 8.48.1
To Reproduce
dispatch mail using
ray()->mailable()
in chain callExpected behavior
this must be same result in none chaining call, like sample below
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: