问题标签 [laravel-mail]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
986 浏览

laravel - 在 Laravel 邮件中查看 [email.wellcome] 未找到

我无法使用 Laravel 发送邮件。起初,我设置了 Mail in 的所有详细信息.env

控制器

这是我的邮件代码:

我不明白为什么我看到View [email.wellcome] not found.我已经清除了我的 Laravel 缓存,但这还没有解决!

0 投票
1 回答
95 浏览

php - 如何使用 Laravel 默认重置密码链接附加电子邮件

如何将电子邮件与令牌一起附加?

`

0 投票
0 回答
512 浏览

laravel - The email of the notification being sent is not working in a Laravel unit test

I am developing a Laravel application. I am doing unit test. But having a bit of a problem of testing the email being sent.

My test code is something like this.

In the actual implementation. I am sending the notification as the email. The notification was sent in the event.

I have a notifiable model like this.

I send the notification in the event like this.

Then I have a listener for that event like this.

As you can see, in the listener, I am sending notification (ApplicationCreatedNotification). This is the definition of ApplicationCreatedNotification.

As you can see, the notification is sent as an email (Mailable).

This is my mailable class (ApplicationCreatedEmail).

Then in the code, I trigger the event like this in the controller.

If you go back to the test, as you can see, I am trying to test if the email is being sent. But it is failing because the email was not sent. But instead, if I test if the notification is sent like this.

It works. Testing the notification works. Testing the email being sent is failing. But if I test the email being sent, the email class is triggered as well because I logged the variables using dd() helper. It even runs the build function of mailable with any errors. Just the test is failing. What is the possible error? How can I fix it?

0 投票
1 回答
2015 浏览

php - 真实服务器上邮件驱动程序的laravel邮件发送问题

我正在使用 laravel 5.4,对于邮件,我使用邮件驱动程序来进行真正的服务器邮件托管。

在本地使用此配置不发送电子邮件,而是在服务器中发送。为什么?

我尝试了邮件配置的所有选项,但不发送。

我做了(但没有工作)

他们不工作。我如何从本地发送电子邮件?

0 投票
1 回答
90 浏览

php - 在 Laravel 电子邮件验证中选择收件人电子邮件

我已经 在我的 Laravel 应用程序中实现了电子邮件验证。默认情况下,当用户注册时,会向用户发送验证邮件。但是,我想要的是向我的邮箱发送一封验证邮件,也就是选择收件人,以便站点管理员(在本例中为我)可以批准用户注册。

有没有办法做到这一点?如何?

0 投票
1 回答
1849 浏览

laravel-5.7 - 调用字符串上的成员函数 getRealPath()"

我想在提交包含所有数据和附件(文件、图像)的表单后发送邮件。我猜它返回字符串值。如何解决这个问题。

控制器.php

App\Mail\circularfs.php错误截图在这里

0 投票
0 回答
356 浏览

laravel - 邮件实现ShouldQueue时laravel不发送邮件

我设置了我的 mailable 类来实现 ShouldQueue 接口,并且还使用了 Queueable 特征。现在,当我发送邮件时,它会进入作业表,php artisan queue:work运行作业而不会失败,我可以看到作业已被处理,但我的收件箱中没有收到邮件。

但是,当我从实现的接口中删除 ShouldQueue 时,邮件会正常发送,并且我会在收件箱中收到邮件。

此外,每当我在本地时,排队的邮件都会被发送,我可以在收件箱中看到邮件。知道问题可能是什么吗?

0 投票
1 回答
2832 浏览

php - Laravel 邮件消息组件前缀

我正在尝试为 laravel 自定义我的电子邮件模板。所以我发布了通知和邮件供应商。

resources/views/vendor/notifications/email.blade.php文件中,框架调用这样的组件

mail::前缀代表什么?

我试图在resources/views/vendor/mail/mycomponent.blade.php. 所以我也称它为默认组件。

这没用。这里的错误:

所以我的问题是前缀mail::指向哪里?我可以将它用于我自己的组件吗?

0 投票
2 回答
1629 浏览

laravel - Laravel:是否可以延迟发送通知,但动态更改 smtp 设置?

我正在使用 Laravel v5.7 开发多租户(多数据库),并且成功发送队列电子邮件。

在某些特定情况下,我想发送带有“延迟”的按需通知,类似于指南On-Demand Notifications,但会在发送前告知应使用的 SMTP 设置。

我开发了一个更改 config() 值的类。

应用程序/租户/SmtpConfig.php

...我在通知中调用这个 SmtpConfig 类:

我可以成功发送“延迟”通知,但显然它总是使用.env文件的默认值。

现在我不确定我在哪里调用这个类是否有意义,甚至我如何告诉通知它应该使用什么 SMTP 配置。

0 投票
1 回答
43 浏览

laravel - 这是在 Laravel 中一次发送多封邮件的好方法吗?

我仍在学习 Laravel,需要一些建议... 长话短说,我有一个小脚本,应该在客户需要续订合同前 15 天向客户发送邮件。现在,代码确实有效。而且我们的客户名单相对较少。不过,我很好奇。这是一个好方法吗?它有效率吗?使用数据库查询会更好吗?无论如何,这是代码......

提前感谢<3