Pau1Phi11ips
New Pleskian
Just a note for anyone else that's been pulling their hair out with this.
We had a consistent bug on our newsletter send. Swift Mailer was randomly injecting two periods in URLs so
would end up being
I've finally found the problem. This was causing the error:
Switching back to
like we had it before this **** storm happened fixed it.
We had a consistent bug on our newsletter send. Swift Mailer was randomly injecting two periods in URLs so
Code:
site.com
Code:
site..com
I've finally found the problem. This was causing the error:
PHP:
$transport = new Swift_SendmailTransport( '/usr/sbin/sendmail -t' );
Switching back to
PHP:
$transport = new Swift_SendmailTransport( '/usr/sbin/sendmail -bs' );