/application/config/concrete.php
に下記の各項目のメールアドレスなどを設定したファイルをアップロードしてください。
Last active
February 21, 2017 04:15
-
-
Save katzueno/1376e45b3f8c60815ca101d00cc086f1 to your computer and use it in GitHub Desktop.
concrete5 の差出人メールアドレスを一斉管理
This file contains hidden or 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
<?php | |
return array( | |
/** | |
* ------------------------------------------------------------------------ | |
* 通知メール設定 | |
* ------------------------------------------------------------------------ | |
*/ | |
'email' => array( | |
/** | |
* Enable emails | |
* | |
* @var bool | |
*/ | |
'enabled' => true, | |
'default' => array( | |
// デフォルトの値 | |
'address' => '[email protected]', | |
'name' => 'Name' | |
), | |
'form_block' => array( | |
// フォームブロック通知メールの差出人 | |
'address' => '[email protected]', | |
), | |
'forgot_password' => array( | |
// パスワードを忘れた人 | |
'address' => '[email protected]', | |
'name' => 'Name' | |
), | |
'validate_registration' => array( | |
// ユーザー登録通知メール関連 | |
'address' => '[email protected]', | |
'name' => 'Name' | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment