Email or merge fields of this email is updated. Appropriate entry of recipient can be found both by e-mail and merge fields.
listUpdateMember(string $id, string $email_address, array $merge_vars, string $email_type) : boolean
'Richard', "LNAME" => 'Wright'); $email_type = 'html'; $retval = $api->listUpdateMember($id, $email_address, $merge_vars, $email_type); header("Content-Type: text/plain"); if ($api->errorCode) { echo "Unable to load listUpdateMember()!\n"; echo "\tCode=" . $api->errorCode . "\n"; echo "\tMsg=" . $api->errorMessage . "\n"; } else { echo "Returned: " . $retval . "\n"; }
new xmlrpcval($apikey), 'id' => new xmlrpcval($listId), 'email_address' => new xmlrpcval($my_email), 'merge_vars' => php_xmlrpc_encode( array("FNAME" => 'Richard', "LNAME" => 'Wright') ), 'email_type' => new xmlrpcval('html') ), 'struct'); $f = new xmlrpcmsg('listUpdateMember', array($v)); $c = new xmlrpc_client($apiUrl["path"], $apiUrl['host'], 80); $c->setDebug($debug); $r = &$c->send($f); header("Content-Type: text/plain"); if (!$r->faultCode()) { $retval = php_xmlrpc_decode($r->value()); echo "Returned: " . $retval . "\n"; } else { echo "Unable to load listUpdateMember()!\n"; echo "\tCode=" . $r->faultCode() . "\n"; echo "\tMsg=" . $r->faultString() . "\n"; }
from lib.config import * #contains apikey from lib.MGAPI import MGAPI # This Example shows how to ping using the MGAPI.php class and do some basic error checking. api = MGAPI(apikey) id = listId email_address = my_email merge_vars = {"FNAME": 'Richard', "LNAME": 'Wright'} email_type = 'html' retval = api.listUpdateMember(id, email_address, merge_vars, email_type) if api.errorCode: print "Unable to load listUpdateMember()!" print "\tCode=", api.errorCode print "\tMsg=", api.errorMessage else: print "Returned: ", retval