Page 1 of 1

[FIX] SMTP

Posted: Sat Feb 27, 2010 6:25 pm
by OSWorX
If your trying to send emails with SMTP, it will not work due a bug (fixed with 1.4.1).
To fix this:
edit

Code: Select all

../system/library/mail.php
and look for

Code: Select all

fputs( $handle, 'MAIL FROM: <' . $this->from . '>XVERP' . $eol );
replace with:

Code: Select all

fwrite( $handle, 'MAIL FROM: <' . $this->from . '>' . $eol )

Re: [FIX] SMTP

Posted: Sat Mar 13, 2010 3:32 am
by jontorbs
Do we need to reduce the email address for the website to just the username or use the whole email address (given that it is using an email address with the same domain as the website eg http://www.mywebsite.com and theshop@mywebsite.com)

Apologies for the apparently idiotic question but I can't seem to get any emails from my blummin website contact us page using 1.4!

SORTED! No need to reply thanks. Much appreciated as usual for the excellent resources on here!