📜  没有为 [mail] 定义提示路径. - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:54.146000             🧑  作者: Mango

代码示例1
You need to call the markdown() method in the build() method of your 
mailable - not the view() method. See the example below:

/**
 * Build the message.
 *
 * @return $this
 */
public function build()
{
    return $this->markdown('view-to-mail');
}