473,396 Members | 1,784 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,396 software developers and data experts.

Email without SMTP Server

Hello,

Is it possible to send an email from vb.net application without using
SMTP server? Are there any third-party components that I can use?

Thanks
Nov 20 '05 #1
11 3070
No.

You need some sort of mail server to do this. I think even IMAP uses SMTP
as its sending gateway.

"Sehboo" <ma*********@hotmail.com> wrote in message
news:7b**************************@posting.google.c om...
Hello,

Is it possible to send an email from vb.net application without using
SMTP server? Are there any third-party components that I can use?

Thanks

Nov 20 '05 #2
You need SMTP to send mail around. You could write your own (stripped down)
SMTP-server.
BTW: You're not writing a new mass mailer I hope...

"Sehboo" <ma*********@hotmail.com> schreef in bericht
news:7b**************************@posting.google.c om...
Hello,

Is it possible to send an email from vb.net application without using
SMTP server? Are there any third-party components that I can use?

Thanks

Nov 20 '05 #3
* ma*********@hotmail.com (Sehboo) scripsit:
Is it possible to send an email from vb.net application without using
SMTP server? Are there any third-party components that I can use?


Why not use a "remote" SMTP server?

--
Herfried K. Wagner [MVP]
<http://dotnet.mvps.org/>
Nov 20 '05 #4
Cor
Hi Sehboo,

did you already look at this website

<http://www.indyproject.org/indy.html>.

It seems that they have a great name in Delphi and are now busy for .Net

Cor
Nov 20 '05 #5
I am not sure what you mean by "remote" SMTP server.

hi***************@gmx.at (Herfried K. Wagner [MVP]) wrote in message news:<c1*************@ID-208219.news.uni-berlin.de>...
* ma*********@hotmail.com (Sehboo) scripsit:
Is it possible to send an email from vb.net application without using
SMTP server? Are there any third-party components that I can use?


Why not use a "remote" SMTP server?

Nov 20 '05 #6
He means your provider's (ISP) SMTP-server (or an open proxy).

"Sehboo" <ma*********@hotmail.com> schreef in bericht
news:7b**************************@posting.google.c om...
I am not sure what you mean by "remote" SMTP server.

hi***************@gmx.at (Herfried K. Wagner [MVP]) wrote in message

news:<c1*************@ID-208219.news.uni-berlin.de>...
* ma*********@hotmail.com (Sehboo) scripsit:
Is it possible to send an email from vb.net application without using
SMTP server? Are there any third-party components that I can use?


Why not use a "remote" SMTP server?

Nov 20 '05 #7
That's not quite true.

You do not "need" a mail server to do this. Well, you need the
recieving mail server to recieve mail, but that's it. All you need to
do is perform a MX record lookup, for the remote mail server's domain,
and then, using the SMTP protocol, deliever the the mail directly to
the recipient's inbox.

That's exactly what http://www.aspNetEmail.com does with it's
DirectSend() method.

http://www.aspnetemail.com/help/aspn...irectsend.html

Cheers!
Dave
"CJ Taylor" <no****@blowgoats.com> wrote in message news:<10*************@corp.supernews.com>...
No.

You need some sort of mail server to do this. I think even IMAP uses SMTP
as its sending gateway.

"Sehboo" <ma*********@hotmail.com> wrote in message
news:7b**************************@posting.google.c om...
Hello,

Is it possible to send an email from vb.net application without using
SMTP server? Are there any third-party components that I can use?

Thanks

Nov 20 '05 #8
> That's not quite true.

You do not "need" a mail server to do this. Well, you need the
recieving mail server to recieve mail, but that's it. All you need to
do is perform a MX record lookup, for the remote mail server's domain,
and then, using the SMTP protocol, deliever the the mail directly to
the recipient's inbox.
So... Your using a server? That uses the SMTP protocol? To send mail?

And where was my statement "not true"


That's exactly what http://www.aspNetEmail.com does with it's
DirectSend() method.

http://www.aspnetemail.com/help/aspn...irectsend.html

Cheers!
Dave
"CJ Taylor" <no****@blowgoats.com> wrote in message

news:<10*************@corp.supernews.com>...
No.

You need some sort of mail server to do this. I think even IMAP uses SMTP as its sending gateway.

"Sehboo" <ma*********@hotmail.com> wrote in message
news:7b**************************@posting.google.c om...
Hello,

Is it possible to send an email from vb.net application without using
SMTP server? Are there any third-party components that I can use?

Thanks

Nov 20 '05 #9
ma*********@hotmail.com (Sehboo) wrote in news:7bfc97ca.0403010642.7c273015
@posting.google.com:
Is it possible to send an email from vb.net application without using
SMTP server? Are there any third-party components that I can use?


www.indyproject.org - SMTP Relay
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
Nov 20 '05 #10
There's no relay server involved.

"you need the recieving mail server to recieve mail, but that's it. "

Cheers!
Dave

"CJ Taylor" <no****@blowgoats.com> wrote in message news:<10*************@corp.supernews.com>...
That's not quite true.

You do not "need" a mail server to do this. Well, you need the
recieving mail server to recieve mail, but that's it. All you need to
do is perform a MX record lookup, for the remote mail server's domain,
and then, using the SMTP protocol, deliever the the mail directly to
the recipient's inbox.


So... Your using a server? That uses the SMTP protocol? To send mail?

And where was my statement "not true"


That's exactly what http://www.aspNetEmail.com does with it's
DirectSend() method.

http://www.aspnetemail.com/help/aspn...irectsend.html

Cheers!
Dave
"CJ Taylor" <no****@blowgoats.com> wrote in message

news:<10*************@corp.supernews.com>...
No.

You need some sort of mail server to do this. I think even IMAP uses SMTP as its sending gateway.

"Sehboo" <ma*********@hotmail.com> wrote in message
news:7b**************************@posting.google.c om...
> Hello,
>
> Is it possible to send an email from vb.net application without using
> SMTP server? Are there any third-party components that I can use?
>
> Thanks

Nov 20 '05 #11

"dave wanta" <go*****@123aspx.com> wrote in message
news:e2**************************@posting.google.c om...
There's no relay server involved.

"you need the recieving mail server to recieve mail, but that's it. "

" You do not "need" a mail server to do this."

So... Because you say "receiving" instead of SMTP that makes you more
correct? I don't get it...

Cheers!
Dave

"CJ Taylor" <no****@blowgoats.com> wrote in message

news:<10*************@corp.supernews.com>...
That's not quite true.

You do not "need" a mail server to do this. Well, you need the
recieving mail server to recieve mail, but that's it. All you need to
do is perform a MX record lookup, for the remote mail server's domain,
and then, using the SMTP protocol, deliever the the mail directly to
the recipient's inbox.


So... Your using a server? That uses the SMTP protocol? To send mail?

And where was my statement "not true"


That's exactly what http://www.aspNetEmail.com does with it's
DirectSend() method.

http://www.aspnetemail.com/help/aspn...irectsend.html

Cheers!
Dave
"CJ Taylor" <no****@blowgoats.com> wrote in message

news:<10*************@corp.supernews.com>...
> No.
>
> You need some sort of mail server to do this. I think even IMAP uses
SMTP
> as its sending gateway.
>
>
>
> "Sehboo" <ma*********@hotmail.com> wrote in message
> news:7b**************************@posting.google.c om...
> > Hello,
> >
> > Is it possible to send an email from vb.net application without

using > > SMTP server? Are there any third-party components that I can use?
> >
> > Thanks

Nov 20 '05 #12

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

Similar topics

15
by: Sven Templin | last post by:
Hello all, our configuration is as following described: - OS: Windows 2000 - Apache server 1.3 - Php 3.8 - MS outlook client 2000 _and_ no SMTP server available in the whole intranet.
0
by: John Silver | last post by:
I have a perl script running on machine A, a web server. A visitor completes certain pieces of data and these are compiled into two emails, one addressed to the visitor and copied to the site...
13
by: joe215 | last post by:
I want my users to send emails from a Windows app that I am developing in Visual Basic.NET 2003. I found a good example of sending email to a SMTP server using the SmtpMail class. However, using...
1
by: Srinivas | last post by:
Hi, I am using ASP.NET SmtpMail to send email using the following code public void SendEmail(string From, string To, string Subject, StringBuilder Message, string Attachment, string...
4
by: CLEAR-RCIC | last post by:
I want to send an email from our Intranet site to myself whenever an error happens. Our manager will not let us install SMTP on the web server. Is it possible to send email programatically...
3
by: armando perez | last post by:
Hi, this is my first time here, but I was looking for something that may help me, and still, I haven't found something to use. I'm using a website made in .NET with C#, when I'm running my site...
2
by: | last post by:
I want to send email without Smtp Server. We have a Imail Server installed on our web server which requires Smtp server is not working on it. When i disable Smtp Server on the local machine Cdo...
3
by: BLUE | last post by:
I want to send an email from my web service. I do not want to act like an email client, giving credentials of an existing email account to send messages: I would like to send my mail directly to...
11
by: Ed Bitzer | last post by:
I have been able using the namespace System.Web.Mail and its method Smtp.mail.send to mail simple text messages to a small group within our 55 and older community. I need help expanding the...
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
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.