Quote:
Originally Posted by Slave
it seems like something is the wrong away round .. say my alias is "slave" and my forum account is "Slave" .. when I send out an email the received name and email address look like this ..
slave<Slave@testsite.com>
Spot the incorrect capitalisation ..
|
This can be fixed by ..
Opening vbms_class_mail_message.php
Find ..
Code:
"From" => "\"$this->fromalias\" <$this->fromusername" . "@" . $vbulletin->options['vbms_todomain'] . ">",
and replace with ..
Code:
"From" => "\"$this->fromusername\" <$this->fromalias" . "@" . $vbulletin->options['vbms_todomain'] . ">",