SmartDbConnector 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package SmartDbConnector --version 1.0.1
                    
NuGet\Install-Package SmartDbConnector -Version 1.0.1
                    
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="SmartDbConnector" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SmartDbConnector" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="SmartDbConnector" />
                    
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 SmartDbConnector --version 1.0.1
                    
#r "nuget: SmartDbConnector, 1.0.1"
                    
#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 SmartDbConnector@1.0.1
                    
#: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=SmartDbConnector&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=SmartDbConnector&version=1.0.1
                    
Install as a Cake Tool

📱 SmartWhatsappSender

A powerful, easy-to-use .NET library for WhatsApp Cloud API integration. Send messages, templates, media, and interactive content with just a few lines of code!

NuGet
Version NuGet
Downloads


🔐 License Registration (Free)

To use this package, please register for a free access token.

👉 Register here:
https://forms.gle/ywYYbftF3mrWpcfn8

After submitting the form:

  • 📧 You will receive an email\
  • 🔑 The email contains your Username and Access Token\
  • 🚀 Use them when initializing the client

This system is completely free and used only for usage tracking and license management.


📦 Installation

dotnet add package SmartWhatsappSender

🎯 Quick Start (With License)

using SmartWhatsappSender;

using var whatsApp = new WhatsAppClient(
    accessToken: "YOUR_PERMANENT_ACCESS_TOKEN",
    phoneNumberId: "YOUR_PHONE_NUMBER",
    username: "YOUR_USERNAME",
    token: "YOUR_LICENSE_TOKEN"
);

var response = await whatsApp.SendTextMessageAsync(
    to: "911234567890",
    message: "Hello from SmartWhatsappSender! 🚀"
);

if (response.IsSuccess)
{
    Console.WriteLine($"Message sent! ID: {response.Messages[0].Id}");
}
else
{
    Console.WriteLine($"Error: {response.Error.Message}");
}

🚀 Features

  • ✅ Simple & Intuitive
  • ✅ Text Messages
  • ✅ Template Messages
  • ✅ Media Messages
  • ✅ Interactive Messages
  • ✅ Webhook Handling
  • ✅ Async/Await Support
  • ✅ .NET 8 Compatible
  • ✅ Built-in License Validation

📚 Example: Send Template Message

await whatsApp.SendTemplateMessageAsync(
    to: "911234567890",
    templateName: "hello_world",
    languageCode: "en_US"
);

🌐 Webhook Example (ASP.NET Core)

[HttpPost("webhook")]
public async Task<IActionResult> HandleWebhook([FromBody] object payload)
{
    var data = await whatsApp.HandleWebhookAsync(payload.ToString());
    return Ok();
}

📋 API Methods

  • SendTextMessageAsync
  • SendTemplateMessageAsync
  • SendTemplateWithComponentsAsync
  • SendImageAsync
  • SendDocumentAsync
  • SendAudioAsync
  • SendVideoAsync
  • SendButtonMessageAsync
  • SendListMessageAsync
  • MarkAsReadAsync
  • HandleWebhookAsync
  • VerifyWebhookToken
  • IsValidPhoneNumber

📄 License

MIT License


📞 Support


Made with ❤️ for the .NET community

Happy Coding 🚀

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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

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.4 45 3/2/2026
1.0.3 41 3/2/2026
1.0.2 44 3/2/2026
1.0.1 45 3/2/2026