Hey there,
on a test-server I wanted to use 'smtp' as E-Mail Transport Method.
I didn't work ... i figured out, why:
file: include/classes/class.smtp.php
line: 118
//Added for Gmail support CER
if($this-Protocol != '') $host = $this->Protocol."://".$host;
FIX: just put a '>' between 'if($this-' and 'Protocol ...' so it becomes a class variable pointer thing ...
correct:
//Added for Gmail support CER
if($this->Protocol != '') $host = $this->Protocol."://".$host;
But thank you very much for this great piece of software ... just got to know it and already like it![]()



