Sending email in C# using Smtp API

Experience a breakthrough in your development process with TurboSMTP's Email API. Achieve swift integration and instant email dispatch. Our API, compatible with any C# application, streamlines large-scale email sending with easy-to-follow documentation.

Sending email in C# using Smtp API

Email API for C# Developers

TurboSMTP's Email API simplifies the integration of email functionalities into your C# applications. Featuring a user-friendly API, smooth integration, and detailed documentation, it enables you to efficiently scale your email delivery, from a couple of emails to millions. Below, you'll find straightforward examples demonstrating the integration of our APIs with C# applications.

using System.Text;
using System.Text.Json;

public class Program
{
    public static async Task Main(string[] args)
    {
        var consumerKey = "<CONSUMER_KEY>";
        var consumerSecret = "<CONSUMER_SECRET>";

        string url = "https://api.turbo-smtp.com/api/v2/mail/send";
        
        var mailData = new { 
            from = "hello@your-company.com", 
            to = "Doe.Jhon@gmail.com,contact@global-travel.com",
            subject = "New live training session",
            cc = "cc_user@example.com",
            bcc = "bcc_user@example.com",
            content = "Dear partner, we are delighted to invite you to an exclusive training session on UX Design. This session is designed to provide essential insights and practical strategies to enhance your skills.",
            html_content = "Dear partner, We are delighted to invite you to an exclusive training session on <strong>UX Design</strong>. This session is designed to provide essential insights and practical strategies to enhance your skills."
        }; // Mail Data setup.

        using (HttpClient httpClient = new HttpClient())
        {
            // JSON data seriaization
            var json = JsonSerializer.Serialize(mailData);
            var content = new StringContent(json, Encoding.UTF8, "application/json");

            // Set authentication headers
            content.Headers.Add("consumerKey", consumerKey);
            content.Headers.Add("consumerSecret", consumerSecret);

            // Trigger POST request
            using (var response = await httpClient.PostAsync(url, content))
            {
                if (response.IsSuccessStatusCode)
                {
                    var result = await response.Content.ReadAsStringAsync();
                    Console.WriteLine("Response: " + result);
                }
                else
                {
                    Console.WriteLine("Request error: " + response.StatusCode);
                }
            }
        }
    }
}

Send Emails Using Your Favorite Coding Language

Our APIs offer developers the flexibility to effortlessly integrate email solutions using their preferred programming languages. Whether you're skilled in Python, cURL, Ruby, or any other popular coding language, our comprehensive API support has you covered.

TurboSMTP Service Highlights

Here are four compelling reasons to choose TurboSMTP's service: unparalleled email delivery, data-driven insights through analytics, robust privacy and security, and dedicated 24/7 support for a worry-free email experience.

Powerful Infrastructure for High Email Deliverability

Our infrastructure scales for mass email distribution, offering SMTP and API integration, with TurboSMTP ensuring fast, effective communication.

Refine Outreach with Email Metrics & Analytics

TurboSMTP's tools provide insights on email performance, helping optimize campaigns for better engagement, conversions, and ROI through data-driven strategies.

Email Privacy and Security: Fundamental Values

Our email service prioritizes privacy and security, using advanced encryption and strict privacy law adherence to protect your data and communications.

Support at Your Service Whenever You Want

TurboSMTP provides 24/7 collaborative support with a dedicated team, ensuring a smooth, worry-free email experience and reliable assistance at every step.

Get Started with TurboSMTP Email API

Just follow these three simple steps to seamlessly integrate TurboSMTP into your C# application.

Sign up for a free account and get 10,000 free emails per month.

Retrieve your API key from your dashboard.

Follow our API documentation to start your integration.