Hi,
In the good old days we made a custom module that added a extranet user to a newsletter v3 category.
With a notification subscriper for:
[Subscribe(Dynamicweb.Notifications.ExtranetExtended.User.Created)]
- our code look something like this:
Dynamicweb.NewsLetterV3.Recipient MyRecipient = Dynamicweb.NewsLetterV3.Recipient.GetRecipientByEmail(MyCurrentUser.Email);
Dynamicweb.NewsLetterV3.Subscription MySubscription = new Subscription(NewsletterListID, Dynamicweb.Modules.Common.Constants.MailFormat.HTML);
MyRecipient.Subscriptions.Add(MySubscription);
MyRecipient.CreationDate = System.DateTime.Now;
MyRecipient.Save();
But with the new UserManagement the above shouldnt be necessary or should it?
1. What is "Best Pratice" on using UserManagement with Newsletter Signup?
2. If we choose to use a Extranet-group for newsletter signup -will we loose all data and statistic on the unique user?
3. What have you done to solve this issue? Extranet sign up with the option of signing up for newsletter as well? Code examples? Extranet-groups?
Thank you for your reply ;)
/Morten
Developer forum
UserManagement w. Newsletter V3 signup
Replies
You must be logged in to post in the forum