RonSijm.Flowmailer 1.0.7.2

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package RonSijm.Flowmailer --version 1.0.7.2
NuGet\Install-Package RonSijm.Flowmailer -Version 1.0.7.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RonSijm.Flowmailer" Version="1.0.7.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RonSijm.Flowmailer --version 1.0.7.2
#r "nuget: RonSijm.Flowmailer, 1.0.7.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RonSijm.Flowmailer as a Cake Addin
#addin nuget:?package=RonSijm.Flowmailer&version=1.0.7.2

// Install RonSijm.Flowmailer as a Cake Tool
#tool nuget:?package=RonSijm.Flowmailer&version=1.0.7.2

RonSijm.Flowmailer

.NET Nuget codecov

C# client library implementing all Flowmailer API methods

API documentation: https://flowmailer.com/apidoc/flowmailer-api

Nuget: https://www.nuget.org/packages/RonSijm.Flowmailer/

Usage in library:

var client = new FlowMailerClient(httpFactory, "ClientId", "ClientSecret", "AccountId");
var result = await client.GetEventFlows();

Usage in ASP Core:

Create a config session in your appsettings.json:

"FlowMailer": {
  "ClientId": "ClientId",
  "ClientSecret": "ClientSecret",
  "AccountId": "1337"
}

Wire it up in your Program.cs:

var flowMailerConfig = builder.Configuration.GetSection("FlowMailer").Get<FlowMailerOptions>();
builder.Services.AddScoped<IFlowMailerClient>(serviceProvider => new FlowMailerClient(serviceProvider.GetService<IHttpClientFactory>(), flowMailerConfig));

Implemented methods:

GetEventFlowRules


GetHierarchyFlowEventFlowRules


ListEventFlows


CreateEventFlows


DeleteEventByEventFlowId


GetEventByEventFlowId


SaveEventByEventFlowId


GetRuleForAEventByEventFlowId


SetRuleForAEventByEventFlowId


ListFilters

  • List filters per account
  • Url: https://api.flowmailer.net/{account_id}/filters
  • Endpoint: Task<List<Filter>> ListFilters(ref_range range, date_range daterange = default, string sortorder = default, CancellationToken cancellationToken = default)

DeleteFilter


GetFlowRules


ListFlowTemplates


ListFlows


CreateFlow


DeleteFlow


GetFlow


SaveFlow


ListMessagesPerFlow

  • List messages per flow
  • Url: https://api.flowmailer.net/{account_id}/flows/{flowId}/messages
  • Endpoint: Task<List<Message>> ListMessagesPerFlow(date_range daterange, string flowId, items_range range, bool addheaders = default, bool addonlinelink = default, bool addtags = default, CancellationToken cancellationToken = default)

GetRuleForAFlowConditions


SetRuleForAFlow


GetStatisticsForAFlow


ListMessageEvents

  • List message events
  • Url: https://api.flowmailer.net/{account_id}/message_events
  • Endpoint: Task<List<MessageEvent>> ListMessageEvents(ref_range range, bool addmessagetags = default, date_range daterange = default, List<string> flowIds = default, date_range receivedrange = default, string sortorder = default, List<string> sourceIds = default, CancellationToken cancellationToken = default)

ListMessageHold


GetMessageHold


ListMessages

  • List messages
  • Url: https://api.flowmailer.net/{account_id}/messages
  • Endpoint: Task<List<Message>> ListMessages(ref_range range, bool addevents = default, bool addheaders = default, bool addonlinelink = default, bool addtags = default, date_range daterange = default, List<string> flowIds = default, string sortfield = default, string sortorder = default, CancellationToken cancellationToken = default)

SimulateMessage


SubmitMessage


GetMessage


ListArchivedAsMessage


FetchAttachmentForAnArchivedMessageByFlowStepIdAndContentId


GetErrorArchiveByMessages


ResendMessage


GetMessageStats

  • Get time based message statistics for whole account
  • Url: https://api.flowmailer.net/{account_id}/messagestats
  • Endpoint: Task<DataSets> GetMessageStats(date_range daterange, List<string> flowIds = default, int interval = default, CancellationToken cancellationToken = default)

GetRecipient


ListMessagesPerRecipient

  • List messages per recipient
  • Url: https://api.flowmailer.net/{account_id}/recipient/{recipient}/messages
  • Endpoint: Task<List<Message>> ListMessagesPerRecipient(ref_range range, string recipient, bool addheaders = default, bool addonlinelink = default, bool addtags = default, date_range daterange = default, string sortorder = default, CancellationToken cancellationToken = default)

ListMessagesPerSender

  • List messages per sender
  • Url: https://api.flowmailer.net/{account_id}/sender/{sender}/messages
  • Endpoint: Task<List<Message>> ListMessagesPerSender(ref_range range, string sender, bool addheaders = default, bool addonlinelink = default, bool addtags = default, date_range daterange = default, string sortorder = default, CancellationToken cancellationToken = default)

ListSenderDomains


CreateSenderDomains


GetByBySenderDomains


ValidatesSenderDomains


DeleteSenderDomains


GetSenderDomains


SaveSenderDomains


ListSenderIdentities


CreateSenderIdentities


DeleteSenderIdentitiesByIdentityId


GetSenderIdentitiesByIdentityId


SaveSenderIdentitiesByIdentityId


ListSourceSystems


PostSources


DeleteSources


GetSource


UpdateSources


ListMessagesPerSource

  • List messages per source
  • Url: https://api.flowmailer.net/{account_id}/sources/{sourceId}/messages
  • Endpoint: Task<List<Message>> ListMessagesPerSource(date_range daterange, items_range range, string sourceId, bool addheaders = default, bool addonlinelink = default, bool addtags = default, CancellationToken cancellationToken = default)

GetStatisticsForASource


ListUsersPerSourceSystem


PostUsersBySources


DeleteUsersBySources


GetUsersBySources


UpdateUsersBySources


ListMessagesPerTag

  • List messages per tag
  • Url: https://api.flowmailer.net/{account_id}/tag/{tag}/messages
  • Endpoint: Task<List<Message>> ListMessagesPerTag(ref_range range, string tag, bool addheaders = default, bool addonlinelink = default, bool addtags = default, date_range daterange = default, string sortorder = default, CancellationToken cancellationToken = default)

ListTemplates


CreateTemplate


DeleteTemplate


GetTemplate


SaveTemplate


ListUndeliveredMessages

  • List undeliverable messages
  • Url: https://api.flowmailer.net/{account_id}/undeliveredmessages
  • Endpoint: Task<List<BouncedMessage>> ListUndeliveredMessages(ref_range range, bool addevents = default, bool addheaders = default, bool addonlinelink = default, bool addtags = default, date_range daterange = default, date_range receivedrange = default, string sortorder = default, CancellationToken cancellationToken = default)

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net481 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.7.2 867 4/21/2023
1.0.7.1 171 4/5/2023
1.0.7 200 3/13/2023
1.0.6 204 3/13/2023
1.0.5 386 3/8/2023
1.0.4 212 3/7/2023
1.0.3 199 3/6/2023
1.0.2 206 3/6/2023
1.0.1 204 3/6/2023
1.0.0 205 3/6/2023