Skip to content

Instantly share code, notes, and snippets.

@katzueno
Last active February 21, 2017 04:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save katzueno/1376e45b3f8c60815ca101d00cc086f1 to your computer and use it in GitHub Desktop.
Save katzueno/1376e45b3f8c60815ca101d00cc086f1 to your computer and use it in GitHub Desktop.
concrete5 の差出人メールアドレスを一斉管理

concrete5.7 & 8: concrete5 が送信するメールの FROM 差出人を任意のものに変える方法

  • /application/config/concrete.php に下記の各項目のメールアドレスなどを設定したファイルをアップロードしてください。
<?php
return array(
/**
* ------------------------------------------------------------------------
* 通知メール設定
* ------------------------------------------------------------------------
*/
'email' => array(
/**
* Enable emails
*
* @var bool
*/
'enabled' => true,
'default' => array(
// デフォルトの値
'address' => 'email@example.com',
'name' => 'Name'
),
'form_block' => array(
// フォームブロック通知メールの差出人
'address' => 'email@example.com',
),
'forgot_password' => array(
// パスワードを忘れた人
'address' => 'email@example.com',
'name' => 'Name'
),
'validate_registration' => array(
// ユーザー登録通知メール関連
'address' => 'email@example.com',
'name' => 'Name'
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment