Email Notices #2

User 2757927 Photo


Registered User
4 posts

I have not been able to make the following two items work in my form. Within Settings - Email Notices:

1. CC:
2. Auto-response message

My site is hosted by GoDaddy. I have uploaded CoffeCup's suggested GoDaddy user.cfg.php file.

Does anyone of any suggestions? Can someone send me a URL with troubleshooting suggestions?

Upon completing the form, I am able to pass email fields to the screen with no issues using Confirm Options. I am just not able to get the form to CC or Auto-response message.
User 2757927 Photo


Registered User
4 posts

Problem Solved. I found the below user.cfg.php file/code posted by another user. I had to replace the WFB default user.cfg.php file on my GoDaddy server with this file.

For those interested...make sure the From: field in the WFB Auto-response section of Email Notices agrees with the user in the server needs authentication section listed below.

/**
* CoffeeCup Software's Web Form Builder.
*
* This configuration file is intended to change the default behavior of the Web Form Builder scripts to
* accomodate special needs some users may have due to the server setup they have to deal with.
*
* The user is responsible for any changes to this file.
* Remove the '//' in front of the lines that you need add '//' in front of the lines you don't need.
*
*
* @version $Revision: 2244 $
* @author Cees de Gruijter
* @category FB
* @copyright Copyright (c) 2011 CoffeeCup Software, Inc. (http://www.coffeecup.com/)
*/

/*********************** Send Mail Configuration ****************************/

// What service is available for sending mail? Possible values are:
// - localhost [default] Server where the shop is installed, must be a Linux or Unix machine with sendmail
// - smtp A mail server of your choice that supports the standard SMTP protocol
//$user_config['mailer']['service'] = 'localhost';
$user_config['mailer']['service'] = 'smtp';

// Does the remote SMTP server need authentication?
$user_config['mailer']['smtp']['auth'] = true;
//$user_config['mailer']['smtp']['auth'] = false;

// Use this if the server needs authentication:
$user_config['mailer']['smtp']['user'] = 'youruser@yourdomain.xxx';
$user_config['mailer']['smtp']['password'] = 'yourpassword';

// The address of the server
$user_config['mailer']['smtp']['host'] = 'smtpout.secureserver.net';
//$user_config['mailer']['smtp']['host'] = 'smtp.gmail.com';

// Connection parameters for a plain SMTP server
$user_config['mailer']['smtp']['port'] = '80';
$user_config['mailer']['smtp']['secure'] = '';

// Connection parameters for a SMTP server that supports secure connections, such as smtp.gmail.com
//$user_config['mailer']['smtp']['port'] = '465';
//$user_config['mailer']['smtp']['secure'] = 'ssl';

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.