✉️ Newsletter tools - Our-Company-Ltd/our.orders GitHub Wiki
Instantly subscribe the clients using:
Campaign Monitor
- Install Package
Use theOur.Orders.Campaignmonitor
NuGet package manager inside Visual Studio, Xamarin Studio, or run the following command: Package Manager Console:
PM> Install-Package Our.Orders.Campaignmonitor
.Net CLI:
dotnet add package Our.Orders.Campaignmonitor
- Add to startup
public void ConfigureServices(IServiceCollection services, ...)
{
var campaignMonitorApiKey = "yourAPIKey";
var campaignMonitorListId = "yourListID";
...
services
.AddOurOrders()
...
.UseCampaignMonitor(campaignMonitorApiKey, campaignMonitorListId);
...
}
- Launch the app & test You should now see a floating action in the client detail screen to instantly add the subscriber to your campaign monitor list
Mail Chimp
- Install Package
Use theOur.Orders.mailchimp
NuGet package manager inside Visual Studio, Xamarin Studio, or run the following command: Package Manager Console:
PM> Install-Package Our.Orders.mailchimp
.Net CLI:
dotnet add package Our.Orders.mailchimp
- Add to startup
public void ConfigureServices(IServiceCollection services, ...)
{
var mailChimpApiKey = "yourAPIKey";
var mailChimpListId = "yourListID";
...
services
.AddOurOrders()
...
.UseMailChimp(mailChimpApiKey, mailChimpListId);
...
}
- Launch the app & test You should now see a floating action in the client detail screen to instantly add the subscriber to your mailchimp list