Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Forum Module /

Discuss the Forum Module.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Subscribe to this topic


Go to End


3 Posts   1897 Views

Avatar
malinux

Community Member, 23 Posts

12 September 2009 at 4:46pm

Hi

I'm using SilverStripe-v2.3.3 and forum-trunk-r86119. When a forum user subscribe to a topic and gets an email - the from field is empty?

It looks like a problem with line 353 in forum/code/Post.php
$email->setFrom(Email::getAdminEmail());

Where can I set the admin email?

- Martin

Avatar
Willr

Forum Moderator, 5523 Posts

12 September 2009 at 7:14pm

add the following to your mysite/_config.php file

Email::setAdminEmail('admin@domain.com');

Avatar
malinux

Community Member, 23 Posts

12 September 2009 at 8:23pm

Yes, your right :-)

thank you!