Recent Topics

1 Jun 18, 2006 13:45    

My hostingprovider blocks e-mails when the 'from' is not from my domain.

So now I don't receive the notification e-mails of the reactions to my blogs anymore.

How can I make the 'from' my own e-mailaddress?

2 Jun 18, 2006 16:35

In /conf/_advanced.php look for "notify_from".

3 Jun 20, 2006 08:27

blueyed wrote:

In /conf/_advanced.php look for "notify_from".

yes, that's what I thought, but it doesn't work: it still sends e-mails with the 'from' of the respondend in stead of the e-mailaddress of my domain.

4 Jun 20, 2006 21:23

Ah.. you mean with the email address that the commentor/visitor supplied?

I fear you'd need to hack it right where it happens.

Which b2evo version are you using?

5 Jun 21, 2006 10:01

blueyed wrote:

Ah.. you mean with the email address that the commentor/visitor supplied?

I fear you'd need to hack it right where it happens.

Which b2evo version are you using?

Yes! That's what I mean! B)

I use 0.9.2

6 Jun 21, 2006 10:07

htsrv/comment_post.php (near the bottom), find this segment of code :-

	if( is_logged_in() )
		$mail_from = $current_User->get('email');
	elseif( empty( $email ) )
		$mail_from = $notify_from;
	else
		$mail_from = "\"$author\" <$email>";


and change it to :-

$mail_from = $notify_from;

¥

7 Jun 21, 2006 10:23

wow! Quick reply!

And it works!

Tnx!


Form is loading...