Send Mail Error on CRAMMD5.php

Hi,
I trying to send e-mail using sc_mail function. Until a recent update everything worked well. But after the update I get the error as below:

“Fatal error: Call to a member function getString() on a non-object in C:Program FilesNetMakev5wwwrootscriptcaseprod hirdemail_newlibSwiftAuthenticatorCRAMMD5.php on line 36”

Uncaught Error of type [Swift_BadResponseException] with message [Expected response code(s) [250] but got response []]
@0 form_rate_request_apl::controle() in C:Program FilesNetMakev5wwwrootscriptcaseappDASAform_rate_requestform_rate_request.php on line 1406
@1 form_rate_request_apl::ini_controle() in C:Program FilesNetMakev5wwwrootscriptcaseappDASAform_rate_requestform_rate_request_apl.php on line 864
@2 form_rate_request_apl::sc_btn_Send_mail() in C:Program FilesNetMakev5wwwrootscriptcaseappDASAform_rate_requestform_rate_request_apl.php on line 820
@3 Swift::Swift() in C:Program FilesNetMakev5wwwrootscriptcaseappDASAform_rate_requestform_rate_request_apl.php on line 1228
@4 Swift::connect() in C:Program FilesNetMakev5wwwrootscriptcaseprod	hirdemail_newlibSwift.php on line 109

Any one got an idea why?

Re: Send Mail Error on CRAMMD5.php

I’ve got the same error !
Did you fix it ?
Thanks
Giovannino

Re: Send Mail Error on CRAMMD5.php

After many test I’ve reached a solution:

sc_mail_send($mail_smtp_server,
$mail_smtp_user,
$mail_smtp_pass,
$mail_from,
$mail_to,
$mail_subject,
$mail_message,
$mail_format,
‘’, ‘’, ‘465’,‘S’);

465 or 587

It still gave me back an error like “Unable to find the socket transport “tls”…”

Googling for Unable to find the socket transport “tls” I founded this article:

http://www.phpbuilder.com/board/showthread.php?t=10326107

It suggests in a row to activate PHP extension “openssl” : You need to enable the openssl extension because that extension provides the tls socket transport layer.

I don’t what it is but I tried and incredibly it works now either 465 than 587.

Bye
Giovannino