Where to change "concrete5-noreply"

Permalink 1 user found helpful
Where in the CC5.7 do you alter the form response email of "concrete5-noreply"?

is it in /concrete/config/concrete.php ?

growlrooed
 
MrKDilkington replied on at Permalink Reply
MrKDilkington
Hi growlrooed,

Is this what you are looking for?
https://github.com/concrete5/concrete5/blob/develop/web/concrete/con...

If so, it could be added to application\config\concrete.php.
'email' => array(
    'default' => array(
        'address' => 'concrete5-noreply@' . (isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'localhost')
    )
)
Ta2Ta2 replied on at Permalink Reply
Thanks Man! that worked for me too!!
xb385 replied on at Permalink Reply
xb385
its in concrete/config/concrete.php on line 308
growlrooed replied on at Permalink Reply
growlrooed
Thanks guys. That's where I thought it was.

I tried changing the email address to something more appropriate to my client's website but I am using a Formify form and it is still sending from concrete5-noreply.

So now I'm trying to figure out where Formify is grabbing that email address from.

BTW. if you are thinking of using Formify, you might want to hold off. It still have a few major bugs obviously.
growlrooed replied on at Permalink Reply
growlrooed
If figured it out. Silly me. I forgot to check the concrete folder in upgrades. Duh.

However, Formify still had problems with changing the "from" in its notifications to the email address you specify. So word up on that.
ali7566 replied on at Permalink Reply
ali7566
Hi growlrooed

did you manage to change the senders address in formify? I'm having similar issues
linuxoid replied on at Permalink Reply
linuxoid
If you don't have a concrete.php in \application\config, create one there with the following:

<?php
return array(
    'email' => array(
        'default' => array(
            'address' => 'noreply@' . (isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'localhost')
        )
    )
);