web-dev-qa-db-ja.com

Eメールを機能させようとしていますLaravel 5

さて、私はlaravel 5.にかなり慣れていないということから始めましょう。私は、適切なURLを入力するだけで送信する簡単なメールを取得しようとして、Googleでずっと検索してきました。残念ながら、私が見つけたドキュメントはそれほど役に立ちませんでした、そしてただ広い見た目を与えます(私はlaravel 5は新しいですが、それでもイライラするハハ)を理解しています)。私がやろうとしていることについては何も気になりません。他のことをする前にそれも機能させたいのです。今のところ、Gmailを使用するだけでこれを機能させようとしていますが、それを理解したら、もちろん、Mailgunのようなものを試してみます。これは私が今持っているコードです。最初のコードはmail.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", "mail", "sendmail", "mailgun", "mandrill", "log"
|
*/

'driver' => env('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.gmail.com'),



/*
|--------------------------------------------------------------------------
| 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' =>"[email protected]" , 'name' => "example_name"],

/*
|--------------------------------------------------------------------------
| 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' => '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('[email protected]'),

/*
|--------------------------------------------------------------------------
| SMTP Server Password
|--------------------------------------------------------------------------
|
| Here you may set the password required by your SMTP server to send out
| messages from your application. This will be given to the server on
| connection so that the application will be able to send messages.
|
*/

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

/*
|--------------------------------------------------------------------------
| 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',


/*
|--------------------------------------------------------------------------
| Mail "Pretend"
|--------------------------------------------------------------------------
|
| When this option is enabled, e-mail will not actually be sent over the
| web and will instead be written to your application's logs files so
| you may inspect the message. This is great for local development.
|
*/

'pretend' => false,

];
_

これは私のルートにあります:

_Route::get('test', function()
{
Mail::send('Email.test', function ($message)
{
    $message->to('[email protected]', 'example_name')->subject('Welcome!');
});
});
_

パスにも_MailController@Sending_Email_を試しました。これは私のMailControllerにあります:

_class MailController extends Controller{
public function Sending_Email()
{
   $this->call('GET','Email.test');
    return View('Email.test');
}

}
_

私の見解はこの単純なコードです:

_<html>
<head>

</head>
<body>
    <h1>hey this is a test to see if my email system works</h1>
</body>
</html>
_

これは私のエラーです:Missing argument 1 for Illuminate\Support\Manager::createDriver(), called in /vagrant/leonis/vendor/laravel/framework/src/Illuminate/Support/Manager.php on line 89 and defined

8
Vantheman6

いくつか問題が発生しています。最初に:

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

envメソッドは.envファイルを検索します。私の推測では、.envファイルに「smtp」エントリがありません。私は単にこれに変更します:

_'driver' => 'smtp',
_

これでcreateDriver()エラーが処理されます。

それでもドライバーに問題がある場合、または後でSMTPサーバーへの認証に問題がある場合は、実行時に構成を簡単に確認してください。

_dd(Config::get("mail"));
_

env() .env設定をチェックしてからデフォルト値にフォールバックするので、生成された構成がどのように見えるかを確認すると便利です。

_Mail::send_の呼び出し方法にまだ問題があります。これはあなたのコードです:

_Mail::send('Email.test', function ($message)
_

そしてこれは Laravelドキュメント からです:

_Mail::send('emails.welcome', ['key' => 'value'], function($message)
_

2番目の引数が配列であることに注意してください。コールバック関数はthird引数である必要があります。

ドキュメントから:

2つ目は、ビューに渡されるデータです。多くの場合、データ項目が$ keyによってビューで使用できる連想配列として渡されます。

したがって、次のようなことを行います。

_Mail::send('Email.test', [], function ($message) { 
    $message->to('[email protected]', 'example_name')->subject('Welcome!');
});
_
8
jszobody

あなたはする必要があるかもしれません

php artisan config:clear

その後

php artisan config:cache
2
Harry Bosh