We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e99c7e1 commit 3e4b8efCopy full SHA for 3e4b8ef
src/Mail/Mailable.php
@@ -60,16 +60,7 @@ protected function buildView()
60
if (isset($this->mjml) || isset($this->mjmlContent)) {
61
return $this->buildMjmlView();
62
}
63
- if (isset($this->markdown)) {
64
- return $this->buildMarkdownView();
65
- }
66
- if (isset($this->view, $this->textView)) {
67
- return [$this->view, $this->textView];
68
- } elseif (isset($this->textView)) {
69
- return ['text' => $this->textView];
70
71
-
72
- return $this->view;
+ return parent::buildView();
73
74
75
/**
0 commit comments