By tag: Email
0
kicks
I Knew How To Validate An Email Address Until I Read The RFC
A great post that goes into details about how to validate an email address against the actual definition provided in RFC 2821.
0
kicks
Send E-Mail with Friendly Display Name in .Net 1.0 (System.Web.Mail)
Trick way to send email with friendly display name in System.Web.Mail .NET C#
0
kicks
SQL SERVER - 2008 - Creating Full Text Catalog and Full Text Search
This is the first ever and complete example for SQL Server 2008 - Full Text Catalog and Full Text Search.
Make sure to book mark for future reference.
0
kicks
SQL SERVER - 2008 - Configure Database Mail - Send Email From SQL Data
First and Complete article of SQL Server 2008 Database Mail configuration. From start to end - Complete article.
Bookmark it!
0
kicks
How to send HTML Email from ASP.NET using your Gmail account?
Yes it's possible so why not use it? This little tutorial shows you how to set up your web application to send emails using your Gmail account.
Just don't abuse it, ok? :)
0
kicks
How to check email works with no SMTP
Testing code that sends email has always been a pain. You had to set up a SMTP service just to test that your .NET application sends the e-mail correctly...
0
kicks
Using Embedded Resources for HTML EMail Templates
Most web applications need to send out email for a variety of purposes, right? I like to use email as a sort of extended user interface - allowing entry points to let the user conveniently do work by getting an email and clicking on a link. I've struggled for a while with a good way of managing e...
0
kicks
Sending E-Mail using .net Framework 1.1 and 2.0 (SMTP .net framework s
Here you will find a selection of articles about SMTP and .net fx.
If you have issues trying to send e-mails using .net, I would (you can find this info at the link provided):
1. First check if the problem is located on your .net code, or if it's a network issue (permissions, configurations.....
0
kicks
Reporting Exceptions through E-Mail
One of the terrible things we as developers have to deal with is unhandled exceptions, we all have them good and bad developers. The problem is that no matter how well thought out an application may be we will always have holes that we never anticipated. Unfortunately one day an end user will find i...
0
kicks
Tips for avoiding Spam Filters with System.Net.Mail
It's getting more difficult for spammers to dig through the walls of tools like SpamAssassin every day. However, that also tightens the rules for us developers who do not intend to send out spam. We have to be very careful when creating and sending out HTML Mails.
This article shows you how to do...
0
kicks
Send Mail through SMTP with SSL Authentication like GMail
This example will help you to send email from ASP.NET using Gmail SMTP (SSL authentication required)
0
kicks
How to send templated emails in Asp.Net 2.0
a quick guide on how to implement a SendMail class that send a templated and anonymous emails in Asp.Net 2.0, we will use C# for this article
0
kicks
Creating a Rules Processing Framework - Part 1 - The Rules Provider
I will describe how to create a Rules Engine Framework using C#. It will take a few posts to describe the entire process but it's very cool and your going to want to read them all. In Part 1, I am going to describe the Rules Provider.
0
kicks
E-Mail in ASP.NET
In this article we will explore three different and important e-mailing techniques; to send a simple text e-mail, to send HTML content via e-mail, and to send attachments.