When using UmbracoMembers to store subscribers, i would like to know if i can filter on an member property (Language) besides the membergroup when sending mails from newsletter studio.
The standard subscription provider for umbraco members doesen't support filtering on properties but its very easy to implement your own provider that has different lists depending on language. Look for the part about Subscription Providers in the documentation and have a look at the contrib-project where there's some examples: https://github.com/enkelmedia/NewsletterStudioContrib
Upgrading from 1.2 to 1.3 will need to change stuff in the db (not handled by the installer). I would install the package in a nother instance and then replicate the table schema OR delete old information and save whats needed somewhere outside the db.
The provider can't be used for mailing lists in the tree, they will show only when you click to send the newsletter and choose mailing list.
I dont have any subscribers yet. So i could just uninstall vers. 1.2 and install 1.3, right?
"The provider can't be used for mailing lists in the tree, they will show only when you click to send the newsletter and choose mailing list." So i have to create my own control to handle the subscribers and categories from Umb, right?
Where are you looking? The mailing list will not show as a node in the treeview, it will appear as a option when you are performing the send out. So try to make a draft email and click "Send" then look in the drop down list for choosing a mailing list.
Are you using the exact solution from the NewsletterStudioContrib-github? If not, are you sure that you are using the right assembly name in the config-file? Right click the solution and look in the properties. No errors in log files or so?
Using UmbracoMembers filter on property
Hi,
When using UmbracoMembers to store subscribers, i would like to know if i can filter on an member property (Language) besides the membergroup when sending mails from newsletter studio.
Hi!
The standard subscription provider for umbraco members doesen't support filtering on properties but its very easy to implement your own provider that has different lists depending on language. Look for the part about Subscription Providers in the documentation and have a look at the contrib-project where there's some examples: https://github.com/enkelmedia/NewsletterStudioContrib
Hi, Thanks
Yes, its seems easy to roll your provider.
But how do i get my mailing list to appear inside the newsletter studio node 'Mailing Lists'?
I tried using the ucomerce provider example.
Added the table to hold subscribers, copied dll, set web.config
In the example I see the method 'GetListItems', but nothing shows up in newsletter studio.
Oh and i have newsletter stuido 1.2
How to i best upgrade it, if thats needed?
Hi!
Upgrading from 1.2 to 1.3 will need to change stuff in the db (not handled by the installer). I would install the package in a nother instance and then replicate the table schema OR delete old information and save whats needed somewhere outside the db.
The provider can't be used for mailing lists in the tree, they will show only when you click to send the newsletter and choose mailing list.
Hi,
I dont have any subscribers yet. So i could just uninstall vers. 1.2 and install 1.3, right?
"The provider can't be used for mailing lists in the tree, they will show only when you click to send the newsletter and choose mailing list." So i have to create my own control to handle the subscribers and categories from Umb, right?
Hi,
I uninstalled 1.2 and installed 1.3. Neede some tweaks in tinyMceConfig.config to remove multiple settings.
I then updated newsletter studio web.config with the new provider, but i dont see the catagory add in 'GetListItems()' .
publicoverrideIEnumerable<ListItem> GetListItems()
{
returnnewList<ListItem> { newListItem() { Text = "Customers", Value = "0" } };
}
Here is the web.cofig
namespace
NewletterStudioContrib.SubscriptionProviders {
{
Hi!
Where are you looking? The mailing list will not show as a node in the treeview, it will appear as a option when you are performing the send out. So try to make a draft email and click "Send" then look in the drop down list for choosing a mailing list.
// markus
I am looking her:
Are you using the exact solution from the NewsletterStudioContrib-github? If not, are you sure that you are using the right assembly name in the config-file? Right click the solution and look in the properties. No errors in log files or so?
// M
is working on a reply...