Hello,
Exhausting day of research with hoster on this topic, but I am not much closer.
HOWEVER ~ I have a Joomla site right now on the same hosting server as this phpwcms site ~AND~ the "from email" works on the Joomla site but not on the phpwcms site. Keep in mind that I have the "from name" working, but not the "from email"
I will paste the two sections of config code below, in case it helps someone to help me...
A chunk of code from the Joomla Site (which works)...
Code: Select all
$mosConfig_sendmail = '/usr/sbin/sendmail';
$mosConfig_session_life_admin = '1800';
$mosConfig_session_type = '0';
$mosConfig_shownoauth = '0';
$mosConfig_sitename = 'My Joomla Site;
$mosConfig_smtpauth = '1';
$mosConfig_smtphost = 'localhost';
$mosConfig_smtppass = **********';
$mosConfig_smtpuser = 'info@myjoomlasite.com';
$mosConfig_uniquemail = '1';
A chunk of code from the phpwcms site (which doesn't work yet)...
Code: Select all
// smtp values
$phpwcms['SMTP_FROM_EMAIL'] = 'info@myphpwcms-site.com';
$phpwcms['SMTP_FROM_NAME'] = 'My phpwcms Site';
$phpwcms['SMTP_HOST'] = 'localhost';
$phpwcms['SMTP_PORT'] = 25;
$phpwcms['SMTP_MAILER'] = 'sendmail';
$phpwcms['SMTP_AUTH'] = 1;
$phpwcms['SMTP_USER'] = 'emailaddr@myphpwcms-site.com';
$phpwcms['SMTP_PASS'] = '**********';
Does this help any?
Has anyone seen this before?
Thanks,
John