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
If there is a Mailable that has only a plain text view rendering fails.
Here is the Mailable:
class MessageToUserMail extends Mailable { ... public function build() { return $this->text('emails.message-to-user'); }
Here is the Controller code:
public function mailTests() { $mail = new MessageToUserMail(); return $mail->render(); }
The result is a "View [] not found." exception.
Expected result would be the plain text of the mail rendered in the browser.
The text was updated successfully, but these errors were encountered:
See laravel/ideas#1058 - recently noticed bug
Sorry, something went wrong.
Yeah, it seems to be the same issue.
Render the right view when sending mails just in plain text format (l…
783bea8
…aravel#23822)
[5.6] Render the right view when using Mailables for sending mails ju…
f6a3f4f
…st in plain text format (#23981) * Render the right view when sending mails just in plain text format (#23822) * formatting * Fixed code duplication
No branches or pull requests
If there is a Mailable that has only a plain text view rendering fails.
Here is the Mailable:
Here is the Controller code:
The result is a "View [] not found." exception.
Expected result would be the plain text of the mail rendered in the browser.
The text was updated successfully, but these errors were encountered: