Using SMTP settings with Website Publisher
There are not currently fields to enter SMTP information into Website Publisher, though this is planned for a future version.
If you require the use of a SMTP server, you can modify the PHP code.
Open /lib/email_api/email_api.php and find these lines:
var $SMTPServer = false;
var $SMTPUsername = false;
var $SMTPPassword = false;
var $SMTPPort = 25;
(Note: They will not be near each other like this, there will be comments in between them)
You can modify those details like so (ensuring they have the quotes surrounding the values):
var $SMTPServer = 'myserver.example.com';
var $SMTPUsername = 'username';
var $SMTPPassword = 'pass';
var $SMTPPort = 25;
Related Articles
No related articles were found.
Attachments
No attachments were found.