Skip to content

Commit

Permalink
docs/guide-ja/tutorial-mailing.md updated
Browse files Browse the repository at this point in the history
  • Loading branch information
softark committed Dec 22, 2023
1 parent da20c49 commit a94fda2
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions docs/guide-ja/tutorial-mailing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) 公式エクステンションを使用することが出来ます。


構成
Expand All @@ -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',
],
],
],
];
Expand Down

0 comments on commit a94fda2

Please sign in to comment.