gpt4 book ai didi

php - 无法解析 [Illuminate\Mail\TransportManager] 的 NULL 驱动程序。用于流明框架

转载 作者:行者123 更新时间:2023-12-02 02:51:13 50 4
gpt4 key购买 nike

收到错误 InvalidArgumentException 无法使用 smtp 驱动程序在 Lumen 上解析 [Illuminate\Mail\TransportManager] 的 NULL 驱动程序。我按照lumen文档中设置邮件的所有步骤进行操作。这是我的环境

MAIL_DRIVER=smtp
MAIL_HOST=domain.com
MAIL_PORT=465
<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="571a161e1b080204120519161a126a2224322539363a321733383a363e397934383a" rel="noreferrer noopener nofollow">[email protected]</a>
MAIL_PASSWORD=password
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=no-reply@<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="add8dec8dfc3ccc0c8edc9c2c0ccc4c383cec2c0" rel="noreferrer noopener nofollow">[email protected]</a>
MAIL_FROM_NAME="Company name"

将 laravel 存储库中的 mail.php 添加到 lumen.../config 文件夹

<?php

return [

/*
|--------------------------------------------------------------------------
| Default Mailer
|--------------------------------------------------------------------------
|
| This option controls the default mailer that is used to send any email
| messages sent by your application. Alternative mailers may be setup
| and used as needed; however, this mailer will be used by default.
|
*/

'default' => env('MAIL_MAILER', 'smtp'),

/*
|--------------------------------------------------------------------------
| Mailer Configurations
|--------------------------------------------------------------------------
|
| Here you may configure all of the mailers used by your application plus
| their respective settings. Several examples have been configured for
| you and you are free to add your own as your application requires.
|
| Laravel supports a variety of mail "transport" drivers to be used while
| sending an e-mail. You will specify which one you are using for your
| mailers below. You are free to add additional mailers as required.
|
| Supported: "smtp", "sendmail", "mailgun", "ses",
| "postmark", "log", "array"
|
*/

'mailers' => [
'smtp' => [
'transport' => 'smtp',
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
'auth_mode' => null,
],

'ses' => [
'transport' => 'ses',
],

'mailgun' => [
'transport' => 'mailgun',
],

'postmark' => [
'transport' => 'postmark',
],

'sendmail' => [
'transport' => 'sendmail',
'path' => '/usr/sbin/sendmail -bs',
],

'log' => [
'transport' => 'log',
'channel' => env('MAIL_LOG_CHANNEL'),
],

'array' => [
'transport' => 'array',
],
],

/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
| You may wish for all e-mails sent by your application to be sent from
| the same address. Here, you may specify a name and address that is
| used globally for all e-mails that are sent by your application.
|
*/

'from' => [
'address' => env('MAIL_FROM_ADDRESS', '<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="90f8f5fcfcffd0f5e8f1fde0fcf5bef3fffd" rel="noreferrer noopener nofollow">[email protected]</a>'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],

/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/

'markdown' => [
'theme' => 'default',

'paths' => [
resource_path('views/vendor/mail'),
],
],

];

将以下内容添加到 bootstrap 中的 app.php

$app->register(Illuminate\Mail\MailServiceProvider::class);
$app->configure('mail');
$app->configure('services');
$app->alias('mailer', Illuminate\Mail\Mailer::class);
$app->alias('mailer', Illuminate\Contracts\Mail\Mailer::class);
$app->alias('mailer', Illuminate\Contracts\Mail\MailQueue::class);

发送邮件的实现

public function testMail()
{
Mail::to('<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="bdc8ced8cfd3dcd0d88ffdd9d2d0dcd4d393ded2d093ded2d0" rel="noreferrer noopener nofollow">[email protected]</a>')->send(new MailableClass('George','Kindly note that your email has been sent'));
}

MailableClass 只是一个扩展 Mailable 来构建 View 的类

我还对返回此的配置('mail')进行了数据转储

array:4 [▼
"default" => "smtp"
"mailers" => array:7 [▼
"smtp" => array:8 [▼
"transport" => "smtp"
"host" => "<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="e79294829589868a82a783888a868e89c984888a" rel="noreferrer noopener nofollow">[email protected]</a>"
"port" => "465"
"encryption" => "tls"
"username" => "<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="87f2f4e2f5e9e6eae2c7e3e8eae6eee9a9e4e8ea" rel="noreferrer noopener nofollow">[email protected]</a>"
"password" => "password"
"timeout" => null
"auth_mode" => null
]
"ses" => array:1 [▶]
"mailgun" => array:1 [▶]
"postmark" => array:1 [▶]
"sendmail" => array:2 [▶]
"log" => array:2 [▶]
"array" => array:1 [▶]
]
"from" => array:2 [▶]
"markdown" => array:2 [▶]

我检查了Illumina/mail中的Manager.php和TransportManager.php文件当我将驱动程序函数的驱动程序值设置为“smtp”时,我能够传递给 TransportManager.php 的 createSmtpDriver() 。您可以在此处查看相应的代码...

    /**
* Get a driver instance.
*
* @param string $driver
* @return mixed
*
* @throws \InvalidArgumentException
*/
public function driver($driver = "smtp") //originally $driver = null
{
$driver = $driver ?: $this->getDefaultDriver();

if (is_null($driver)) {
throw new InvalidArgumentException(sprintf(
'Unable to resolve NULL driver for [%s].', static::class
));
}

// If the given driver has not been created before, we will create the instances
// here and cache it so we can return it next time very quickly. If there is
// already a driver created by this name, we'll just return that instance.
if (! isset($this->drivers[$driver])) {
$this->drivers[$driver] = $this->createDriver($driver);
}

return $this->drivers[$driver];
}

我在createSmtpDriver()中做了一个dd

       protected function createSmtpDriver()
{
$config = $this->app->make('config')->get('mail');
**dd($config);**

// The Swift SMTP transport instance will allow us to use any SMTP backend
// for delivering mail such as Sendgrid, Amazon SES, or a custom server
// a developer has available. We will just pass this configured host.
$transport = new SmtpTransport($config['host'], $config['port']);

if (isset($config['encryption'])) {
$transport->setEncryption($config['encryption']);
}

// Once we have the transport we will check for the presence of a username
// and password. If we have it we will set the credentials on the Swift
// transporter instance so that we'll properly authenticate delivery.
if (isset($config['username'])) {
$transport->setUsername($config['username']);

$transport->setPassword($config['password']);
}

// Next we will set any stream context options specified for the transport
// and then return it. The option is not required any may not be inside
// the configuration array at all so we'll verify that before adding.
if (isset($config['stream'])) {
$transport->setStreamOptions($config['stream']);
}

return $transport;
}

这个 dd 的结果基本上是上面 config('mail') 中的结果,从中我们可以看到 config['host'], config['port'] ..etc 不会返回任何内容,因为它们位于mailer 所以我认为它应该是 config['mailer']['host'] 相反...但这些都是框架文件所以...

我非常感谢您提供的帮助来解决这个问题。完全不知道我做错了什么。谢谢

哦对了忘了我也安装了..

composer require guzzlehttp/guzzle

谢谢

最佳答案

所以我基本上将从 Laravel 存储库获得的 mail.php 替换为这个基本的

<?php

return [

/*
|--------------------------------------------------------------------------
| Mail Driver
|--------------------------------------------------------------------------
|
| Laravel supports both SMTP and PHP's "mail" function as drivers for the
| sending of e-mail. You may specify which one you're using throughout
| your application here. By default, Laravel is setup for SMTP mail.
|
| Supported: "smtp", "sendmail", "mailgun", "mandrill", "ses",
| "sparkpost", "log", "array"
|
*/

'driver' => env('MAIL_DRIVER', 'smtp'),

/*
|--------------------------------------------------------------------------
| SMTP Host Address
|--------------------------------------------------------------------------
|
| Here you may provide the host address of the SMTP server used by your
| applications. A default option is provided that is compatible with
| the Mailgun mail service which will provide reliable deliveries.
|
*/

'host' => env('MAIL_HOST', 'smtp.mailgun.org'),

/*
|--------------------------------------------------------------------------
| SMTP Host Port
|--------------------------------------------------------------------------
|
| This is the SMTP port used by your application to deliver e-mails to
| users of the application. Like the host we have set this value to
| stay compatible with the Mailgun e-mail application by default.
|
*/

'port' => env('MAIL_PORT', 587),

/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
| You may wish for all e-mails sent by your application to be sent from
| the same address. Here, you may specify a name and address that is
| used globally for all e-mails that are sent by your application.
|
*/

'from' => [
'address' => env('MAIL_FROM_ADDRESS', '<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="0f676a6363604f6a776e627f636a216c6062" rel="noreferrer noopener nofollow">[email protected]</a>'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],

/*
|--------------------------------------------------------------------------
| E-Mail Encryption Protocol
|--------------------------------------------------------------------------
|
| Here you may specify the encryption protocol that should be used when
| the application send e-mail messages. A sensible default using the
| transport layer security protocol should provide great security.
|
*/

'encryption' => env('MAIL_ENCRYPTION', 'tls'),

/*
|--------------------------------------------------------------------------
| SMTP Server Username
|--------------------------------------------------------------------------
|
| If your SMTP server requires a username for authentication, you should
| set it here. This will get used to authenticate with your server on
| connection. You may also set the "password" value below this one.
|
*/

'username' => env('MAIL_USERNAME'),

'password' => env('MAIL_PASSWORD'),

/*
|--------------------------------------------------------------------------
| Sendmail System Path
|--------------------------------------------------------------------------
|
| When using the "sendmail" driver to send e-mails, we will need to know
| the path to where Sendmail lives on this server. A default path has
| been provided here, which will work well on most of your systems.
|
*/

'sendmail' => '/usr/sbin/sendmail -bs',

/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/

'markdown' => [
'theme' => 'default',

'paths' => [
resource_path('views/vendor/mail'),
],
],

];

现在可以了

关于php - 无法解析 [Illuminate\Mail\TransportManager] 的 NULL 驱动程序。用于流明框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61946659/

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