We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2fe997 commit e49aaf0Copy full SHA for e49aaf0
1 file changed
src/MailChimp.php
@@ -32,6 +32,11 @@ public function __construct($api_key)
32
list(, $datacentre) = explode('-', $this->api_key);
33
$this->api_endpoint = str_replace('<dc>', $datacentre, $this->api_endpoint);
34
}
35
+
36
+ public function subscriberHash($email)
37
+ {
38
+ return md5(strtolower($email));
39
+ }
40
41
public function delete($method, $args=array(), $timeout=10)
42
{
0 commit comments