Changing admin email v8.2

Permalink
Hi all,

I can't seem to locate the correct place or file to change the admin email that I used during installation. All form block mail is coming from this email address, and I'd prefer it to show something different. Can someone please advise how I can either change the admin email or change the default 'from' address for form block mail?

Thanks so much

 
c5dragon replied on at Permalink Best Answer Reply
c5dragon
To change it in concrete.php: (still valid for 5.8)
https://www.concrete5.org/community/forums/5-7-discussion/password-r...

<?php
return array(
   'email' => array(
      'default' => array(
         'address' => 'info@xxxx.xx'
      ),
      'forgot_password' => array(
         'address' => 'no-reply@xxxx.xx'
      ),        
      'form_block' => array(
         'address' => 'no-reply@xxxx.xx'
      )
    ),
);
?>

or through /dashboard/users/
and click the admin account to edit profile, click on the email to edit the email address
wilfordbrimley replied on at Permalink Reply
I see - I did not realize you had to click on the email address to change it in the dashboard. -_- I thought if you clicked, it would open an email client. I have updated it now. Thanks