There are several traps when using Typo3 4.5 and the
direct_mail newsletter extension with an external SMTP server.
Here’s how to set it up:
First of all, prepare the SMTP server (for instance, by allowing
the IP of the Web server as relay host or setting up user
authentication).
In the Typo3 Install tool, set the [MAIL] settings correctly
(transport=smtp, transport_smtp_server, defaultMailFromAddress
and defaultMailFromName). To see if it works, send a mail from
within the Install tool and check its headers (the SMTP server
should be mentioned in a Received line).
As a dependency for direct_mail SMTP usage, you need PEAR::Mail
with Net::SMTP support. Mail.php must be in the include path.
Install it on your server, or if you only have a Webspace, put
the necessary files into a /pear directory and add this directory
to the include_path. Check whether it works using a modified
…
[Read more]