Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / email

Email

email

Great Reads

by Shuqian Ying
The source code and a simple demo program for a plug-in in Microsoft Managed Extensibility Framework (MEF) that provides visual display of email messages.
by Jinan Kordab
This article describes how to create or delete an Active Directory Services Email using ASP.NET web page, remotely.
by Parvathaneni Mamatha
How to use Razor Views as Email Templates and Localize them using sample WebAPI
by JosipK, Marko Kozlina
C# and VB.NET console applications that demonstrate how to create and send an email reply with IMAP and SMTP protocols in .NET Framework

Latest Articles

by Shuqian Ying
The source code and a simple demo program for a plug-in in Microsoft Managed Extensibility Framework (MEF) that provides visual display of email messages.
by Jinan Kordab
This article describes how to create or delete an Active Directory Services Email using ASP.NET web page, remotely.
by Parvathaneni Mamatha
How to use Razor Views as Email Templates and Localize them using sample WebAPI
by JosipK, Marko Kozlina
C# and VB.NET console applications that demonstrate how to create and send an email reply with IMAP and SMTP protocols in .NET Framework

All Articles

Sort by Score

email 

by Jinan Kordab
This article describes how to create or delete an Active Directory Services Email using ASP.NET web page, remotely.
by Parvathaneni Mamatha
How to use Razor Views as Email Templates and Localize them using sample WebAPI
by Hans Dietrich
This Tip talks about not using ALL CAPS in emails.
by Carlos Bocanegra
This tip describes a useful way to create and send an email with a summary of the exceptions from a file validation process in a SSIS package using a XML and a XSLT template.
by Sujith Karivelil
This article will help you to create, update and delete events/ appointment in google calendar from your web application.
by Beavis Killer
This tip describes how to attach a dynamic PDF to a Salesforce messaging email template.
by bbirajdar
How to embed an image in email body
by Pete Mourfield
How to send a test email message using Telnet
by Tejas Vaishnav
Sending an email from your ASP.NET web application
by NikStar
Regex-based solution for decoding values of email addresses fields ("From", "To") and value of "Subject" field
by Marijan Nikic
A simple solution using Powershell for preparing emails from Windows batch in Outlook; supports HTML body
by adriancs
Simple, modern & fast web-based email client.
by Hemang Maradia
How to send email from SQL Azure database through Azure PaaS services Logic Apps and SendGrid
by TarikHuber
A class for sending emails with Outlook using the default Outlook Account. It includes adding multiple attachments and recipients and choosing to use the default email signature or not.
by Kortez2223
How to sent email (Yahoo! SMTP) with Silverlight 5 WCF RIA.
by Richard Deeming
Adding cancellation support to the SendMailAsync method
by fixthebugg
Step by step guide on building your first email application with the file system watcher
by dontumindit
Sending Email using Gmail account from your application.
by SouthernILCode
Hello Abdur,Helpful article on using Gmail to send mail. Added the following "using" statements to my code:System.Net for NetworkCredentialSystem.Net.Mail for MailMessage and AttachmentSystem.IO for adding a OpenFileDialogAlso modified my code to send with...
by BillHudson
Man, that works great! I just converted it to VB.NET and also showed the Imports/Using that was needed, thanks to David's alternate. This was just what I was looking for, Thanks Abdur.Imports System.NetImports System.Net.MailPublic Class frmMain Private Sub frmMain_Load(sender As...
by charles henington
public class MailClass { public static void CreateMailAddresses(string sender, string reciever, out MailAddress mailfrom, out MailAddress mailto) { MailAddress Mailfrom = new MailAddress(sender); MailAddress Mailto = new...
by charles henington
Sending mail with attachmentspublic partial class Form1 : Form { public Form1() { InitializeComponent(); } public class MailClass : List { public void CreateMailAddresses(string sender, string reciever, out...