Send and Receive Emails in ASP.NET C#

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • DnsClient.NET

    DnsClient.NET is a simple yet very powerful and high performant open source library for the .NET Framework to do DNS lookups

  • // in the top of the file // requires installation of https://www.nuget.org/packages/DnsClient using System.Net; using System.Net.Mail; using DnsClient; MailAddress to = new MailAddress("[email protected]"); MailAddress from = new MailAddress("[email protected]"); MailMessage message = new MailMessage(from, to); message.Subject = "See you Monday?"; message.Body = "Elizabeth, I didn't hear back from you. Let me know if we're still scheduled for Monday."; LookupClient lookup = new LookupClient(); IDnsQueryResponse response = lookup.Query("westminster.co.uk", QueryType.MX); foreach(DnsClient.Protocol.MxRecord record in response.Answers) { Console.WriteLine(ObjectDumper.Dump(record.Exchange)); SmtpClient client = new SmtpClient(record.Exchange, 25); try { client.Send(message); // if we reached this point, our email was sent and we can break the loop break; } catch(SmtpException ex) { Console.WriteLine(ex.ToString()); } }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • MS Teams DNS App

    1 project | /r/dns | 8 Sep 2021
  • Hickory DNS

    1 project | news.ycombinator.com | 6 Oct 2023
  • You might want async in your project

    2 projects | news.ycombinator.com | 9 Sep 2023
  • Extract cert.pem and privkey.pem from acme.json

    1 project | /r/Traefik | 6 Jul 2023
  • Announcing `async-dns`

    4 projects | /r/rust | 22 Sep 2022