forked from yiisoft/yii2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs/guide-ja/tutorial-mailing.md updated
- Loading branch information
Showing
1 changed file
with
4 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ Yii は電子メールの作成と送信をサポートしています。 | |
実際のメール送信メカニズムはエクステンションによって提供されなければなりません。 | ||
と言うのは、メール送信はプロジェクトが異なるごとに異なる実装が必要とされるでしょうし、通常、外部のサービスやライブラリに依存するものだからです。 | ||
|
||
ごく一般的な場合であれば、[yii2-swiftmailer](https://www.yiiframework.com/extension/yiisoft/yii2-swiftmailer) 公式エクステンションを使用することが出来ます。 | ||
ごく一般的な場合であれば、yii2-symfonymailer](https://www.yiiframework.com/extension/yiisoft/yii2-symfonymailer) 公式エクステンションを使用することが出来ます。 | ||
|
||
|
||
構成 | ||
|
@@ -22,16 +22,11 @@ return [ | |
//.... | ||
'components' => [ | ||
'mailer' => [ | ||
'class' => 'yii\swiftmailer\Mailer', | ||
'class' => 'yii\symfonymailer\Mailer', | ||
'useFileTransport' => false, | ||
'transport' => [ | ||
'class' => 'Swift_SmtpTransport', | ||
'encryption' => 'tls', | ||
'host' => 'your_mail_server_host', | ||
'port' => 'your_smtp_port', | ||
'username' => 'your_username', | ||
'password' => 'your_password', | ||
], | ||
'dsn' => 'smtp://user:[email protected]:465', | ||
], | ||
], | ||
], | ||
]; | ||
|