Using PHPMailer to send mail (PHP edition)

Issue:

How to install and configure PHPMailer to send mail.



How to solve:

1. Download the appropriate version of PHPMailer from http://phpmailer.worxware.com/index.php?pg=phpmailer.
2. Create a directory labeled phpmailer on your server to store the core PHPMailer files.
3. Extract and upload the PHPMailer files into the phpmailer directory.
4. In Forms To Go, configure the PHPMailer settings under Settings > Languages > PHP > Mailer > PHPMailer class.

File path to class: enter path to class.phpmailer.php
SMTP server: enter SMTP server hostname
SMTP port: enter SMTP port #
Login: enter email address to your mailbox account
Password: enter password to your mailbox account

For GoDaddy Users:

If you are experiencing issues with the SMTP server
relay-hosting.secureserver.net
, please consider using PHPMailer method to relay messages through your email account. For more information, read this article.

Here is an example:

File path to class*: Read http://help.godaddy.com/article/58
/home/content/b/e/b/bebosoftcom/html/phpmailer/class.phpmailer.php
SMTP server:
smtpout.secureserver.net
SMTP port:
3535
Login:
enter email address to your mailbox account
Password:
enter password to your mailbox account

After generating the script, open the script in a text editor and find:
$myOwnerEmail->IsSMTP();

change to:
// $myOwnerEmail->IsSMTP();

If Confirmation Email to User is enabled, find:
$myConfirmationEmail->IsSMTP();

change to:
// $myConfirmationEmail->IsSMTP();

Save the script.