473,385 Members | 1,821 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

SMTP e-mail from VB.NET

Can anyone direct me to an article that explain how to send normal smtp
emails from a VB.net windows app?. (i mean, using normal tcp to send the
mail)

Tnx in advance
Nov 20 '05 #1
11 1984
if you don't want to use the built in SMTP control (which is limited) and
create your own system look up the SMTP RFC document.. else

http://www.dart.com/smtpdotnet.asp

http://www.emailcomponent.com/dotNetEmail.asp

http://www.quiksoft.com/freesmtp/

http://www.planet-source-code.com/vb...2004&lngWId=10
google is your friend
"Toble Rone" <to****@yahoo.com.ar> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Can anyone direct me to an article that explain how to send normal smtp
emails from a VB.net windows app?. (i mean, using normal tcp to send the
mail)

Tnx in advance

Nov 20 '05 #2
* "Toble Rone" <to****@yahoo.com.ar> scripsit:
Can anyone direct me to an article that explain how to send normal smtp
emails from a VB.net windows app?. (i mean, using normal tcp to send the
mail)


Why not use the appropriate classes from the .NET Framework?

<http://www.mvps.org/dotnet/dotnet/samples/net/downloads/SendMail.zip>

--
Herfried K. Wagner [MVP]
<http://dotnet.mvps.org/>
Nov 20 '05 #3
hi***************@gmx.at (Herfried K. Wagner [MVP]) wrote in news:c27ku1
$1*******@ID-208219.news.uni-berlin.de:
Why not use the appropriate classes from the .NET Framework?

<http://www.mvps.org/dotnet/dotnet/samples/net/downloads/SendMail.zip>


They will do the job if your job is simple. They dont support much beyond
basic attachments and plain mails. Also they need CDO to be installed which
not all machines have.
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
Nov 20 '05 #4
"Toble Rone" <to****@yahoo.com.ar> wrote in news:#4YRx3ZAEHA.3712
@tk2msftngp13.phx.gbl:
Can anyone direct me to an article that explain how to send normal smtp
emails from a VB.net windows app?. (i mean, using normal tcp to send the
mail)


http://www.indyproject.org includes a free robust SMTP component.

VB sample code of SMTP here:
www.atozed.com/indy/
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
Nov 20 '05 #5
* "Chad Z. Hower aka Kudzu" <cp**@hower.org> scripsit:
hi***************@gmx.at (Herfried K. Wagner [MVP]) wrote in news:c27ku1
$1*******@ID-208219.news.uni-berlin.de:
Why not use the appropriate classes from the .NET Framework?

<http://www.mvps.org/dotnet/dotnet/samples/net/downloads/SendMail.zip>


They will do the job if your job is simple. They dont support much beyond
basic attachments and plain mails. Also they need CDO to be installed which
not all machines have.


ACK. Nevertheless, you already posted the "other" solution.

--
Herfried K. Wagner [MVP]
<http://dotnet.mvps.org/>
Nov 20 '05 #6
hi***************@gmx.at (Herfried K. Wagner [MVP]) wrote in
news:Oh*************@tk2msftngp13.phx.gbl:
<http://www.mvps.org/dotnet/dotnet/samples/net/downloads/SendMail.zip>


They will do the job if your job is simple. They dont support much
beyond basic attachments and plain mails. Also they need CDO to be
installed which not all machines have.


ACK. Nevertheless, you already posted the "other" solution.


BTW - I wasnt "attacking your demo - I just saw it linked now. I was
referencing the System.Web.Mail which your demo uses.

Just to be clear. :)


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
Nov 20 '05 #7
For an inexpensive SMTP solution within .NET you can look at Component
Designs ezSMTP .NET component www.componentdesigns.com.

"Chad Z. Hower aka Kudzu" <cp**@hower.org> wrote in message news:<Xn******************@127.0.0.1>...
"Toble Rone" <to****@yahoo.com.ar> wrote in news:#4YRx3ZAEHA.3712
@tk2msftngp13.phx.gbl:
Can anyone direct me to an article that explain how to send normal smtp
emails from a VB.net windows app?. (i mean, using normal tcp to send the
mail)


http://www.indyproject.org includes a free robust SMTP component.

VB sample code of SMTP here:
www.atozed.com/indy/

Nov 20 '05 #8
For an inexpensive SMTP solution within .NET you can look at Component
Designs ezSMTP .NET component www.componentdesigns.com.

"Chad Z. Hower aka Kudzu" <cp**@hower.org> wrote in message news:<Xn******************@127.0.0.1>...
"Toble Rone" <to****@yahoo.com.ar> wrote in news:#4YRx3ZAEHA.3712
@tk2msftngp13.phx.gbl:
Can anyone direct me to an article that explain how to send normal smtp
emails from a VB.net windows app?. (i mean, using normal tcp to send the
mail)


http://www.indyproject.org includes a free robust SMTP component.

VB sample code of SMTP here:
www.atozed.com/indy/

Nov 20 '05 #9
For an inexpensive SMTP solution within .NET you can look at Component
Designs ezSMTP .NET component www.componentdesigns.com.

"Chad Z. Hower aka Kudzu" <cp**@hower.org> wrote in message news:<Xn******************@127.0.0.1>...
"Toble Rone" <to****@yahoo.com.ar> wrote in news:#4YRx3ZAEHA.3712
@tk2msftngp13.phx.gbl:
Can anyone direct me to an article that explain how to send normal smtp
emails from a VB.net windows app?. (i mean, using normal tcp to send the
mail)


http://www.indyproject.org includes a free robust SMTP component.

VB sample code of SMTP here:
www.atozed.com/indy/

Nov 20 '05 #10
We use freeSMTP and are very happy with the free version.

http://www.quiksoft.com/freesmtp/

S. Shawn Mehaffie

"Jack" <ma********@yahoo.com> wrote in message
news:87**************************@posting.google.c om...
For an inexpensive SMTP solution within .NET you can look at Component
Designs ezSMTP .NET component www.componentdesigns.com.

"Chad Z. Hower aka Kudzu" <cp**@hower.org> wrote in message

news:<Xn******************@127.0.0.1>...
"Toble Rone" <to****@yahoo.com.ar> wrote in news:#4YRx3ZAEHA.3712
@tk2msftngp13.phx.gbl:
Can anyone direct me to an article that explain how to send normal smtp emails from a VB.net windows app?. (i mean, using normal tcp to send the mail)


http://www.indyproject.org includes a free robust SMTP component.

VB sample code of SMTP here:
www.atozed.com/indy/

Nov 20 '05 #11
"Shawn Mehaffie" <PC************@hotmail.com> wrote in news:OGzXHc5PEHA.3452
@TK2MSFTNGP10.phx.gbl:
http://www.quiksoft.com/freesmtp/


Just note that it doesnt support authentication in case you need it.
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"

Make your ASP.NET applications run faster
http://www.atozed.com/IntraWeb/
Nov 20 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Dan Boyle | last post by:
Hi, I am having difficulty connection to an smtp host. I am using the following code but I don't think I fully understand what smtp host can be used. function setSMTPParams($host = null,...
1
by: David Hughes | last post by:
I wonder if anyone can help me resolve this problem. Although my ISP (One and One) provides the facility to run Python 2.2 CGI programs, their technical support people don't seem to have any Python...
7
by: Nancy | last post by:
Hi, Is there any one knows, if I want to use mod_python to handle my html form, I must have a SMTP server on my PC(winxp pro)? Where can I get a free SMTP server? I cann't follow mod_python's...
21
by: Nancy | last post by:
Hi, Guys, Is there any other way to use python or mod_python writing a web page? I mean, not use "form.py/email", no SMTP server. <form action="form.py/email" method="POST"> ... Thanks a lot. ...
15
by: Steven Burn | last post by:
My server has POP but only has SMTP if sending to my domain, and not other domains (such as hotmail). I'm therefore wondering, if anyone knows of any scripts etc, that will allow me to have a sort...
5
by: Emmett Power | last post by:
Hi, I use Access to send emails through SMTP. I'd like to mirror the process and retrieve emails from my SMTP/Pop3 server without the intermediary of Outlook. I don't want to spend a lot of...
3
by: Charlie | last post by:
Hi: Using the sMTP class and my ISP as smtp server, I sometimes get the following message: "The message could not be sent to the SMTP server. The transport error code was 0x800ccc60. The...
5
by: Dino M. Buljubasic | last post by:
I need to check if an SMTP server exist (not a local one). How can I check if an SMTP server exists from my application? Regards, -- Dino Buljubasic Software Developer...
6
by: John Salerno | last post by:
If I want to write a cgi script that reads the contents of an HTML form and emails it to me, what would I use as the host parameter for my SMTP instance? The example in the docs is 'localhost', but...
4
by: patrickinminneapolis | last post by:
Hi guys, I'm trying to write an emailer, but I can't manage to construct the object properly. Here's what I've got: #!/usr/local/bin/perl -w use Net::SMTP; $smtp =...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.