Subscribe to a list with MLM

amaury

New Member
Hello,

First, sorry for my english… i hope you will undesrstand me.

I have a problem with MLM. I try to use the template « subscribe_single_fixed.php » to allow people to join a list.
My problem is when the subscribe is done, no email is sent to the subscriber.
The script work because i can use the template to unscribe someone from the liste.
Do you have an idea to help me ?

Thank
 

stanbusk

Administrator
Staff member
Have you checked the lm_settings.php file? Is it all right?
A solution is to edit the lm_prefs.php file and activate the SMTP host part.
 

amaury

New Member
i have just chek the lm_setting. all seems to me ok (but i am not an expert in php...)
I can t find in the forum how to activate the SMTP host part. Can you help me for that too ? Thanks.
 

stanbusk

Administrator
Staff member
The SMTP host activation is like with any email software. You have to enter the server address, your account ID and password:

$smtp_auth = True;
$smtp_host = "smtp.xxxxxxxx.com";
$smtp_username = "YOUR_USERNAME";
$smtp_password = "YOUR_PASSWORD";
 
Top