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

[9.x] Mailable Priority Error #40916

Closed
giggsey opened this issue Feb 10, 2022 · 0 comments · Fixed by #40917
Closed

[9.x] Mailable Priority Error #40916

giggsey opened this issue Feb 10, 2022 · 0 comments · Fixed by #40917
Labels

Comments

@giggsey
Copy link
Contributor

giggsey commented Feb 10, 2022

  • Laravel Version: 9.0.1
  • PHP Version: 8.0.14

Description:

Mailable->priority() errors when being sent

Current:

    public function priority($level = 3)
    {
        $this->callbacks[] = function ($message) use ($level) {
            $message->setPriority($level);
        };

        return $this;
    }

Symfony Email class doesn't have setPriority, but instead priority function.

@giggsey giggsey changed the title [9.x] Mail Priority Error [9.x] Mailable Priority Error Feb 10, 2022
@driesvints driesvints added the bug label Feb 10, 2022
taylorotwell pushed a commit that referenced this issue Feb 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants