Recent Topics

1 Nov 17, 2010 18:08    

My b2evolution Version: 3.3.3

I have an small/big problem that I hadn´t before.

My host decided to change the way to get mail and now it is using SMTP authentificed (or something like this, in spanish: SMTP autentificado).

After that, my b2evolution system doesn´t send any email (new articles, new comments, etc...)

My question is:

Is there anywhere inside b2evolution to change email configuration?

Thanks in advance

3 Nov 20, 2010 16:53

I´ve already tried it, but didn´t work. Maybe because my version is 3.3.3?:(
Do you know where does b2evolution keep the data to send mails to the admin? It might be a good place to start with. :

4 Nov 20, 2010 18:42

b2evo uses internal send_mail() function as a wrapper to PHP mail(), take a look at /inc/_core/_misc.funcs.php

You should edit that function

5 Nov 22, 2010 09:44

I got into that code, tried to link part of it to phpmailer() and found myself absolutely lost. Maybe, lack of knowledge about php or about b2evolution.

6 Dec 09, 2010 12:32

SOLVED :lol:

Thanks to a good friend, I solved the problem.

He created a function called mail2 in a new php archive (which has a require ('phpmailer/class.phpmailer.php'); )

After that:

    I uploaded the new function to inc/_core[/list:u]
      I uploaded phpmailer archives to the same folder[/list:u]
        I changed the mail() function to mail2() function in the archive: inc/_core/ _misc_funcs.php lines 2317 and 2324 and made an include with the new function like this (include('newfunction.php'); ) in the line 2313[/list:u]


Form is loading...