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
Sending email with priority using Illuminate\Notifications\Messages\MailMessage cause error:
Call to undefined method Illuminate\Mail\Message::setPriority()
This is because calling wrong function name. Need to replace from setPriority() to priority() in Illuminate\Notifications\Channels\MailChannel:146
setPriority()
priority()
The text was updated successfully, but these errors were encountered:
This was fixed in Laravel 9.0.2 so just run composer update
composer update
Sorry, something went wrong.
I'm sorry, I'm typo when writing laravel version and the class name. I was edit it.
A PR was sent in for this, thanks @Jubeki
Successfully merging a pull request may close this issue.
Description:
Sending email with priority using Illuminate\Notifications\Messages\MailMessage cause error:
This is because calling wrong function name. Need to replace from
setPriority()
topriority()
in Illuminate\Notifications\Channels\MailChannel:146The text was updated successfully, but these errors were encountered: