@curious:
I presume you've used the following code in "mainclass.php" around line 477:
$email=$user->email;
$email=_ART_SET_mail_from_email!=""?_ART_SET_mail_from_email:$mainframe->getCfg('mailfrom');
If you made this change, it's obvious no author will get any mail when he or she will submit any article; the second line just overrides the first, so "$user->email" won't be used anywhere.
@all:
Instead of that, you'll have to use the following code:
$email=$user->email;
if ($admin)
{
$email= _ART_SET_mail_from_email!=""?_ART_SET_mail_from_email:$mainframe->getCfg('mailfrom');
}
Hope this helps all of you!
Cheers,
H.