fuel / email

Fuel PHP Framework - Fuel v1.x Email library
60 stars 38 forks source link

Email send with smtp problem. #23

Closed goztrk closed 12 years ago

goztrk commented 12 years ago

Some email servers sends response with unwanted spaces in the begining of response.

On: APPPATH/packages/email/classes/email/driver/smtp.php Line: 190

When retrieving the $number, $response must be trimmed. Otherwise it will throw Authenticate error.

$number = (int) substr(trim($response), 0, 3);