By tag: SMTP
0
kicks
An SMTP email class for C# that supports SMTP Authentication
If your looking to implement the ability for your application to send email, then this SMTPMail class might just be the answer for you.
0
kicks
Adding Save() functionality to Microsoft.Net.Mail.MailMessage
The MailMessage class provides functionality using the SmtpDeliveryMethod.SpecifiedPickupDirectory of SmtpClient to generate the emails to a file folder. However, I needed to control the filename used to output the email instead of using the SmtpClient's random Guid() approach.
0
kicks
Neptune (personal SMTP testing server)
Neptune is a SMTP Development Server targeted for use in automated testing. It's a SMTP server that does not relay the message and allows you to query for messages and their content.
0
kicks
Sending SMTP Mail using a Stored Procedure
Help me send SMTP mail using a stored Procedure that is auto send email
0
kicks
DnSmtp - A .NET SMTP Client Library in C#
DnSmtp is a fully management SMTP client library written in C#. It provides two delivery methods - Relay and Direct. In relay delivery mode, it will relay messages through your local SMTP server. In direct delivery mode or it will resolve the MX record of the recipient's email address and connect to...
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
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
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
Programmatically send emails using Google mail server and System.Net.M
Did you know you can use Google's gmail mail server to send and receive emails programmatically?
It's true, Google folks allow you to use their mail servers to send emails programmatically from your applications.
0
kicks
Sending mail through Telnet, u can do so with sockets
I think a lot of people uses the SMTP wrong :D, why am I saying this, simple because every referance I have read about it was about simple tasks for the mail
nothing complex, I have never seen anyone talk about authintication in SMTP, anyways lets begin doing this cool thing , I will explain every ...