following up on this.. just wondering/hoping if the new version will fix this problem? or will it use the same email setup?
Motherwell
on Jun 28. 2007. 10:48 am
The solution to this problem is as follows (at least for my server):
1. Open /library/swift/lib/Swift/Stream
2. Go to line 370.
3. Replace:
implode(', ', $this->getTo($string)),
With
str_replace("\n", '', implode(', ', $this->getTo($string))),
The newline character in the to field stuffs everything up, and taking it out solves the issue.
Hope that helps someone else (took me 2 days of fiddling to work it out!!!!!!)
1. Open /library/swift/lib/Swift/Stream
2. Go to line 370.
3. Replace:
implode(', ', $this->getTo($string)),
With
str_replace("\n", '', implode(', ', $this->getTo($string))),
The newline character in the to field stuffs everything up, and taking it out solves the issue.
Hope that helps someone else (took me 2 days of fiddling to work it out!!!!!!)
Motherwell:
Hope that helps someone else (took me 2 days of fiddling to work it out!!!!!!)
Yes it did indeed! Thank you very much for sharing the solution. With this hack sending mails with the option "Default PHP settings" is finally working for me.
Hello people.
I'm having this mail error all the time. No matter if I user PHP function or SMTP.
I've done this, and it's still not working with PHP mail settings. Any other ideas?
Thanks in advance.
I'm having this mail error all the time. No matter if I user PHP function or SMTP.
Motherwell:The solution to this problem is as follows (at least for my server):
1. Open /library/swift/lib/Swift/Stream
2. Go to line 370.
3. Replace:
implode(', ', $this->getTo($string)),
With
str_replace("\n", '', implode(', ', $this->getTo($string))),
The newline character in the to field stuffs everything up, and taking it out solves the issue.
Hope that helps someone else (took me 2 days of fiddling to work it out!!!!!!)
I've done this, and it's still not working with PHP mail settings. Any other ideas?
Thanks in advance.
Topic is locked. If you have something important to say about issues discussed on this page please write at hi@a51dev.com.



