Stories recently tagged with 'SMTP'

An SMTP email class for C# that supports SMTP Authentication(techandit.com)

submitted by bryhbryh(15) 3 years, 2 months ago

If your looking to implement the ability for your application to send email, then this SMTPMail class might just be the answer for you. read more...

add a comment |category: |Views: 87

tags: another

Adding Save() functionality to Microsoft.Net.Mail.MailMessage(codeproject.com)

submitted by jamesewelchjamesewelch(2275) 3 years, 4 months ago

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. read more...

add a comment |category: |Views: 132

tags: another

Neptune (personal SMTP testing server)(donovanbrown.com)

submitted by jonasjonas(2215) 3 years, 7 months ago

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. read more...

add a comment |category: |Views: 445

tags: another

Sending SMTP Mail using a Stored Procedure(sqlteam.com)

submitted by markvumarkvu(10) 3 years, 10 months ago

Help me send SMTP mail using a stored Procedure that is auto send email read more...

add a comment |category: |Views: 96

tags: another

DnSmtp - A .NET SMTP Client Library in C#(choosing-a-blog-url-sucks.blogspot.com)

submitted by j.montyj.monty(1868) 3 years, 11 months ago

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 the recipients server directly and drop the mail message. read more...

add a comment |category: |Views: 448

tags: another

How to check email works with no SMTP(dotnettipoftheday.org)

submitted by manovichmanovich(755) 4 years, 4 months ago

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... read more...

2 comments |category: |Views: 85

tags: another

Sending E-Mail using .net Framework 1.1 and 2.0 (SMTP .net framework s(tipsdotnet.com)

submitted by brauliodbrauliod(275) 4 years, 8 months ago

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...), you can try to send an e-mail using telnet. 2. If you are using .net fx 1.1 go for System.Web.Mail Oh My ! 3. If you are using .net fx 2.0 go for System.Net.Mail Oh My ! 4. If you want to build something more complex (e.g. embedd images on your e-mail), you can do it so using .net fx 2.0 read more...

add a comment |category: |Views: 97

tags: another

Send Mail through SMTP with SSL Authentication like GMail(ifxplus.com)

submitted by m.casatim.casati(600) 4 years, 8 months ago

This example will help you to send email from ASP.NET using Gmail SMTP (SSL authentication required) read more...

1 comment |category: |Views: 86

tags: another

Programmatically send emails using Google mail server and System.Net.M(mycsharpcorner.com)

submitted by youseflayousefla(675) 5 years, 1 month ago

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. read more...

5 comments |category: |Views: 295

tags: another

Sending mail through Telnet, u can do so with sockets(neo-official.blogspot.com)

submitted by Neo_4583Neo_4583(100) 5 years, 5 months ago

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 step read more...

add a comment |category: |Views: 11

tags: another