By ppa-1 on
Hi
I have the problem in responding automatic email response after create a new user. Although i set in the smtp setting, it doesn't work. Where should i check it for? Please advise me. Thanks in advance.
Hi
I have the problem in responding automatic email response after create a new user. Although i set in the smtp setting, it doesn't work. Where should i check it for? Please advise me. Thanks in advance.
Comments
phpmailer
I had similar problems. There are actually many forum topics covering this issue.
The problem is the configuration of the webserver or php or sendmail/gmail. The simplest fix is to change which smtp mailer is used in drupal.
Goto:
http://drupal.org/node/7294
and download the phpmailer.zip file. Read the "readme" file and follow the instructions.
----
http://LandCondos.com
php mailer
Hi
I downloaded the zip file that you suggest and i could not find some files to modify. for instance,
3) modify conf.php and add following line:
$conf["smtp_library"] = "includes/phpmailer.inc";
where is that conf.php file? where should i add the above line?Can you please guide me in detail? I'm using Apache server and php ver. 5.
Thank you.
Those instructions are for
Those instructions are for Drupal 4.5. You need to add that line to the sites/default/settings.php file.
1. Add this line to the settings.php file:
2. Upload a file called phpmailer.inc into the includes directory. Modify it to your settings. Sometimes, you might not have to modify anything. If you don't have it, it looks like this:
3. Upload the latest phpmailer files from sourceforge.net into the includes/phpmailer directory. My directory has 2 files: class.phpmailer.php and class.smtp.php
4. If you are designing modules, make sure you send email via the user_mail function like this:
Complement of information on point 3
I'm not a Linux geed and thus point 3 was difficult to achieve. I just would like to precise the includes/phpmailer directory is related to the PHP installation, not Drupal. E.g. in my case, the absolute path was: \lib\php\includes\phpmailer.
Actually, it is in the
Actually, it is in the drupal path, not the php path.
I think that the method you described (putting it in the php path) works because you configured PHP to use that. We are configuring drupal to use phpmailer.
----
http://PointHomes.com
How to fix 2 warnings
Does this work also when tested on localhost?
I may have made a mistake but I am getting 2 warnings.
warnigs fixed
I just fixed 2 warnings I had.
I forgot to change HOST to localhost.
Am I supposed to get an e-mail when I create a new account on localhost?