gpt4 book ai didi

laravel - 如何在 Laravel 应用程序中添加回复?

转载 作者:行者123 更新时间:2023-12-03 08:48:53 25 4
gpt4 key购买 nike

我从以下代码开始:

Mail::to('<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="5439353d38143339353d387a373b39" rel="noreferrer noopener nofollow">[email protected]</a>')->send(new ContactFormMail($email_data));

这工作正常,但我不确定如何向此代码添加“回复”。
我接下来尝试的是:

Mail::send('emails.contact-form', $email_data, function ($message) {
$message->from('<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="5332373e3a3d133f32213225363f7d303c3e" rel="noreferrer noopener nofollow">[email protected]</a>', 'Laravel');
$message->to('<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="89e8ede4e0e7c9e5e8fbe8ffece5a7eae6e4" rel="noreferrer noopener nofollow">[email protected]</a>');
$message->replyTo('<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="056461686c6b45696477647360692b666a68" rel="noreferrer noopener nofollow">[email protected]</a>', 'Laravel');
});

这有以下问题:

No hint path defined for [mail]...

在这种情况下,如果我从邮件 View 中删除 @component('mail::message'),消息将按其应有的方式发送,但没有样式。
最后,我的 Mailable 类中有这段代码:

public function build()
{
return $this->markdown('emails.contact-form');
}

如有任何帮助,我们将不胜感激。
谢谢

最佳答案

您遇到的问题是 Mail::send 的第一个参数仅接受 view 电子邮件模板或 mailable 类。但是,您传入了一个 markdown 文件。所以它对此不满意。

一个简单的解决方案是

public function build()
{
return $this->markdown('emails.contact-form')
->replyTo('<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="9dfcf9f0f4f3ddf1fceffcebf8f1b3fef2f0" rel="noreferrer noopener nofollow">[email protected]</a>', 'Laravel');
}
Mail::to('<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="3954585055795e54585055175a5654" rel="noreferrer noopener nofollow">[email protected]</a>')->send(new ContactFormMail($email_data));

关于laravel - 如何在 Laravel 应用程序中添加回复?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60157860/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com