SmartDbConnector 1.0.1
There is a newer version of this package available.
See the version list below for details.
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" />
<PackageReference Include="SmartDbConnector" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=SmartDbConnector&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
📱 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!
🔐 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
- Email: info@hashtagtrnd.com
- NuGet: https://www.nuget.org/packages/SmartWhatsappSender/
Made with ❤️ for the .NET community
Happy Coding 🚀
| Product | Versions 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.
-
net8.0
- Microsoft.Data.SqlClient (>= 5.2.3)
- Microsoft.Extensions.Configuration (>= 10.0.3)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.3)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.3)
- Microsoft.Extensions.Configuration.Json (>= 10.0.3)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.3)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.3)
- MongoDB.Driver (>= 3.6.0)
- MySql.Data (>= 9.6.0)
- Newtonsoft.Json (>= 13.0.4)
- Npgsql (>= 10.0.1)
- Oracle.ManagedDataAccess.Core (>= 23.26.100)
- System.Data.SqlClient (>= 4.9.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.