Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in D:\vhosts\vista.com.my\httpdocs\class.phpmailer.php on line 53
if (version_compare(PHP_VERSION, '5.0.0', '<') ) exit("Sorry, this version of PHPMailer will only run on PHP version 5 or greater!\n"); class PHPMailer { ///////////////////////////////////////////////// // PROPERTIES, PUBLIC ///////////////////////////////////////////////// /** * Email priority (1 = High, 3 = Normal, 5 = low). * @var int */ public $Priority = 3; <!--line 53 is here--> /** * Sets the CharSet of the message. * @var string */ public $CharSet = 'iso-8859-1'; /** * Sets the Content-type of the message. * @var string */ public $ContentType = 'text/plain'; /** * Sets the Encoding of the message. Options for this are * "8bit", "7bit", "binary", "base64", and "quoted-printable". * @var string */ public $Encoding = '8bit';
Если это правильный номер строки ошибки, то вы используете PHP 4.
У него нет public
ключевого слова, и, таким образом, вы получите ошибку синтаксического анализа, прежде чем проверка времени выполнения может даже сделать что-либо.
Вы никогда не закрываете class PHPMailer {
скобок class PHPMailer {
.
Добавьте a }
в конец.