Project

General

Profile

Download (1.24 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id: README.txt,v 1.9 2007/02/15 19:37:30 lukelast Exp $
2

    
3
SMTP MODULE for DRUPAL 5.0
4
This module adds SMTP functionality to Drupal.
5

    
6
INSTALL INSTRUCTIONS
7
----
8
1. Copy smtp.module and smtp.info files to your Drupal modules/ folder.
9
2. Login as site administrator.
10
3. Activate smtp.module on the administer->modules page.
11
4. Fill in required settings on the administer->Site configuration->SMTP support page.
12
5. Enjoy.
13

    
14
Notes:
15

    
16
This module sends email by connecting to an SMTP server.
17
Therefore you need to have access to an SMTP server for this module to work.
18

    
19
Drupal will often use the email address entered into "Administrator>Site configuration>E-mail address"
20
as the from address. It is important for this to be the correct address and some ISPs will block email
21
that comes from an invalid address.
22

    
23
Because this module includes PHPMailer it is rather large and may cause PHP to run out of memory if
24
its memory limit is small.
25

    
26
Connecting to an SMTP server using SSL is possible only if PHP's openssl extension is working.
27
If the SMTP module detects openssl is available it will display the options in the modules settings page.
28

    
29
Sending mail to gmail requires SSL or TLS.
30

    
31
This module uses the smtp and mail class's from PHPMailer.
32
http://phpmailer.sourceforge.net
(3-3/5)