This is what I get on SUBMIT:
Warning: [ err 2/line 132G:\PleskVhosts\wcr-srcc.org\httpdocs\wcr-swrcc-contact_exported\wcr-swrcc-contact\fbapp\php\class.smtp.php] fsockopen(): unable to connect to ssl://smtp.gmail.com:465 (A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. )
Warning: [ err 2/line 45G:\PleskVhosts\wcr-srcc.org\httpdocs\wcr-swrcc-contact_exported\wcr-swrcc-contact\fbapp\inc\utilities.inc.php] error_log(G:\PleskVhosts\wcr-srcc.org\httpdocs\wcr-swrcc-contact_exported\wcr-swrcc-contact/storage/fb_error.log.php): failed to open stream: Permission denied
Warning: [ err 2/line 84G:\PleskVhosts\wcr-srcc.org\httpdocs\wcr-swrcc-contact_exported\wcr-swrcc-contact\fbapp\inc\utilities.inc.php] error_log(G:\PleskVhosts\wcr-srcc.org\httpdocs\wcr-swrcc-contact_exported\wcr-swrcc-contact/storage/fb_error.log.php): failed to open stream: Permission denied
Warning: [ err 2/line 45G:\PleskVhosts\wcr-srcc.org\httpdocs\wcr-swrcc-contact_exported\wcr-swrcc-contact\fbapp\inc\utilities.inc.php] error_log(G:\PleskVhosts\wcr-srcc.org\httpdocs\wcr-swrcc-contact_exported\wcr-swrcc-contact/storage/fb_error.log.php): failed to open stream: Permission denied
Warning: [ err 2/line 84G:\PleskVhosts\wcr-srcc.org\httpdocs\wcr-swrcc-contact_exported\wcr-swrcc-contact\fbapp\inc\utilities.inc.php] error_log(G:\PleskVhosts\wcr-srcc.org\httpdocs\wcr-swrcc-contact_exported\wcr-swrcc-contact/storage/fb_error.log.php): failed to open stream: Permission denied
SMTP Error: Could not connect to SMTP host.
xxxxxxxxxxxxxxxxx
my user.cfg.php says (with password redacted

/*********************** 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'] = 'smtp';
//$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'] = 'website@wcr-srcc.org';
$user_config['mailer']['smtp']['password'] = 'redacted';
// The address of the server
$user_config['mailer']['smtp']['host'] = 'smtp.gmail.com';
//$user_config['mailer']['smtp']['host'] = 'smtp.gmail.com';
// Connection parameters for a plain SMTP server
//$user_config['mailer']['smtp']['port'] = '25';
//$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';
?>