Thank you for your answer, I appreciate it. I have one more question: How can I perform Confirmed uploads without sending emails to users?
Turn your list opt-in into single opt-in, then when done, put it back to double.How can I perform Confirmed uploads without sending emails to users?
You can add status confirmed if you want to force confirmed status without confirmation email to be sent:Thank you for your answer, I appreciate it. I have one more question: How can I perform Confirmed uploads without sending emails to users?
$response = $endpoint->createBulk('LIST-UNIQUE-ID', [
[
'EMAIL' => 'john.doe@doe.com',
'FNAME' => 'John',
'LNAME' => 'Doe',
'details' => [
'status' => 'confirmed',
]
],
);
Nah, you need to do it from the web interfaceyes there is