net3000.constantcontact 1.0.0

dotnet add package net3000.constantcontact --version 1.0.0
                    
NuGet\Install-Package net3000.constantcontact -Version 1.0.0
                    
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="net3000.constantcontact" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="net3000.constantcontact" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="net3000.constantcontact" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add net3000.constantcontact --version 1.0.0
                    
#r "nuget: net3000.constantcontact, 1.0.0"
                    
#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.
#:package net3000.constantcontact@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=net3000.constantcontact&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=net3000.constantcontact&version=1.0.0
                    
Install as a Cake Tool

Net3000 ConstantContact Library

This library provides ConstantContact API integration functionality for Net3000 solutions.

Features

  • ConstantContact API authentication and token management
  • Contact management (create, update, delete, search)
  • Contact list management
  • Custom fields management
  • Email campaign management
  • Full async and sync method support

Usage

using Net3000.ConstantContact.Services;

// Initialize service
var service = new ConstantContactService(configuration);

// Exchange authorization code for tokens
var tokenResult = await service.ExchangeCodeForTokensAsync(code, redirectUri);

// Subscribe a contact to a list
var result = await service.SubscribeAsync(listId, email, firstName, lastName);

// Create a contact list
var listResult = await service.CreateListAsync(new ListModel 
{ 
    name = "My List", 
    description = "Description" 
});

Configuration

Add ConstantContact settings to your configuration:

{
  "ConstantContact": {
    "ClientId": "your-client-id",
    "ClientSecret": "your-client-secret"
  }
}

License

MIT License - Copyright © Net3000 2024

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on net3000.constantcontact:

Package Downloads
net3000.mailingList

Mailing list management library for Net3000.ca applications. Subscriber management, campaigns, multi-platform integrations (SendGrid, MailChimp, Constant Contact), delivery tracking, and audience contact sources.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 135 7/31/2026

Initial release of Net3000 ConstantContact library with email marketing API integration.