PHP Classes

Thanx for this useful tool! Please correct some errata in Sen...

Recommend this page to a friend!

      PHP Class Mime Mail  >  All threads  >  Thanx for this useful tool! Please...  >  (Un) Subscribe thread alerts  
Subject:Thanx for this useful tool! Please...
Summary:Package rating comment
Messages:2
Author:Michael Ziemke
Date:2019-12-12 12:33:45
 

Michael Ziemke rated this package as follows:

Utility: Good
Consistency: Good
Examples: Good

  1. Thanx for this useful tool! Please...   Reply   Report abuse  
Picture of Michael Ziemke Michael Ziemke - 2019-12-12 12:33:45
Thanx for this useful tool!
Please correct some errata in Sendmail class:
- add in __set(): proof & set also the value 'from' (and change the default value)
- correction in method isStringy() in order to allow string array:
...
return !in_array (false,
array_map(function($value){ return is_string($value); }, $value)
);
...

Michael Z.

  2. Re: Thanx for this useful tool! Please...   Reply   Report abuse  
Picture of Michael Ziemke Michael Ziemke - 2019-12-12 12:56:58 - In reply to message 1 from Michael Ziemke
In addition, please modify in method send():
...
$recipients = implode(',', $this->recipients);
...

Michael Z.