Outgoing Email API for Profile: Get List of Email Addresses

I am working on a Java console application that must go through all the emails in the frontend database in Tridion Outbound E-mail 2011 and change the specific extended field of this contact.

I looked through the subscription API documentation to find out how to get a list of all emails, but I'm stuck there. Is there any clean way to do this through the API without resorting to database queries?

+6
source share
1 answer

Unable to retrieve contact list using subscription API. It is intended primarily for working with single contacts who update their profile on their website.

For mass contact management, you should instead use Tridion.AudienceManagement.API on your content management server. Changes will be synced to all of your websites.

You do not have to change anything directly in the database, as you will get synchronization problems.

+4
source

Source: https://habr.com/ru/post/923352/


All Articles