Accessing DW mailing list...
Is it possible, like it is with the shopping cart, to communicate with the mailing lists in DW?
What I'm looking for specificly is to be able to Add/Edit/Remove on the mailing lists - maybe in a fashion like:
-------------------------
(1)
MailingList ml = new MailingList("
ml.AddReceiver("
(2)
MailReceiver mr = ml.GetReceiver("
mr.email = "
mr.firstname = "
mr.lastname = "
mr.Save();
(3)
ml.RemoveReceiver("
-----------------------------
Of cause I could contact the database directly but I would prefer to communicate via DW OM/API for mailing list or whatever it's called under the hood.