473,770 Members | 1,973 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Gotta buy a library to send E-mail without SMTP client?

Hi.
I would like to let users send bug reports or other messages to me.
Maybe the easiest way to send e-mails from my application is just use
the default e-mail agent by executing a link
mailto://my****@domail.c om.

But this only works if the user has configured Outlook or something.
Many users use web-based mails here so if I do so, Outlook Express's a
new account wizard will pop-up. Futhure more this reveals user e-mails.
Some people want to be anonymous .

The second choise is to use SMTPClient. But to do so, either I have an
SMTP server that doesn't require login (I don't know any free SMTP
server like this) or should put my SMTP login information (for example,
my gmail credential) into the application. Of course, I don't want my
e-mail credential is embedded into the application.

I just want to send a simple text-based e-mail directly from the user's
computer like many other applications. I searched the internet but all
examples are based on the SMTPClient class. I found some direct sending
examples but they used commercial library (which is not free).

So, I've got to buy a library to send E-mail without SMTP client? Or is
there any free library? I just want to send very simple text-based
e-mails.

Thank you.

Jan 17 '07 #1
5 4222
Approaching it from another angle, could you not give the client a normal
HTML form with an input field for their email address and a subject line,
and a text area for the email body. The send button would post the form to
the server, at which point you could use the Smtp object in DotNet on the
server (if you've got that set up, or are in a position to set it up)

"Sin Jeong-hun" <ty*******@gmai l.comwrote in message
news:11******** **************@ l53g2000cwa.goo glegroups.com.. .
Hi.
I would like to let users send bug reports or other messages to me.
Maybe the easiest way to send e-mails from my application is just use
the default e-mail agent by executing a link
mailto://my****@domail.c om.

But this only works if the user has configured Outlook or something.
Many users use web-based mails here so if I do so, Outlook Express's a
new account wizard will pop-up. Futhure more this reveals user e-mails.
Some people want to be anonymous .

The second choise is to use SMTPClient. But to do so, either I have an
SMTP server that doesn't require login (I don't know any free SMTP
server like this) or should put my SMTP login information (for example,
my gmail credential) into the application. Of course, I don't want my
e-mail credential is embedded into the application.

I just want to send a simple text-based e-mail directly from the user's
computer like many other applications. I searched the internet but all
examples are based on the SMTPClient class. I found some direct sending
examples but they used commercial library (which is not free).

So, I've got to buy a library to send E-mail without SMTP client? Or is
there any free library? I just want to send very simple text-based
e-mails.

Thank you.

Jan 17 '07 #2
Thanks. That could be an options. But this requires a web server
account. And sometimes I need send real e-mails from client
applications at another circumstances. So basically, there's no way
except buying a library or using web server mail? I just want to know
that.

Paul Hadfield wrote:
Approaching it from another angle, could you not give the client a normal
HTML form with an input field for their email address and a subject line,
and a text area for the email body. The send button would post the form to
the server, at which point you could use the Smtp object in DotNet on the
server (if you've got that set up, or are in a position to set it up)

"Sin Jeong-hun" <ty*******@gmai l.comwrote in message
news:11******** **************@ l53g2000cwa.goo glegroups.com.. .
Hi.
I would like to let users send bug reports or other messages to me.
Maybe the easiest way to send e-mails from my application is just use
the default e-mail agent by executing a link
mailto://my****@domail.c om.

But this only works if the user has configured Outlook or something.
Many users use web-based mails here so if I do so, Outlook Express's a
new account wizard will pop-up. Futhure more this reveals user e-mails.
Some people want to be anonymous .

The second choise is to use SMTPClient. But to do so, either I have an
SMTP server that doesn't require login (I don't know any free SMTP
server like this) or should put my SMTP login information (for example,
my gmail credential) into the application. Of course, I don't want my
e-mail credential is embedded into the application.

I just want to send a simple text-based e-mail directly from the user's
computer like many other applications. I searched the internet but all
examples are based on the SMTPClient class. I found some direct sending
examples but they used commercial library (which is not free).

So, I've got to buy a library to send E-mail without SMTP client? Or is
there any free library? I just want to send very simple text-based
e-mails.

Thank you.
Jan 17 '07 #3
I would like to let users send bug reports or other messages to me.
Well, if you don't want to use "mailto:", and don't want to setup mail
at the server, then why use e-mail at all? Why not just have an
"e-mail like" submittal form that posts to a page that logs the data
into a database, flat file (etc) - and have a protected page on the
same site that you can use to review the feedback?

Just a thought...

Marc
Jan 17 '07 #4
"Sin Jeong-hun" <ty*******@gmai l.comwrote in message
news:11******** **************@ l53g2000cwa.goo glegroups.com.. .
Hi.
I would like to let users send bug reports or other messages to me.
Maybe the easiest way to send e-mails from my application is just use
the default e-mail agent by executing a link
mailto://my****@domail.c om.

But this only works if the user has configured Outlook or something.
Many users use web-based mails here so if I do so, Outlook Express's a
new account wizard will pop-up. Futhure more this reveals user e-mails.
Some people want to be anonymous .

The second choise is to use SMTPClient. But to do so, either I have an
SMTP server that doesn't require login (I don't know any free SMTP
server like this) or should put my SMTP login information (for example,
my gmail credential) into the application. Of course, I don't want my
e-mail credential is embedded into the application.
SMTP servers don't require you to login to send them mail that's going to
them. If your "To" address is a gmail address then you can query DNS for
the MX information for gmail.com and it will tell you the public SMTP
servers that will accept incoming mail.

However, many companies block outbound SMTP traffic unless it's coming from
their SMTP server. You should probably check the SMTPServer, if it's set to
something, use that rather than setting it to go direct. If your customer
is blocking outbound SMTP traffic, they have to set the SMTP Server in the
Machine.config or in your app.config.

Jan 17 '07 #5

COuld you develop a basic webservice ... that takes:

to , from , subject , body

as parameters. And code up your app to call this web service to send
emails.

Or even very basic credential info.

to, from, subject, body, senderUserName , senderPassword

..............

Can you encrypt the Gmail (for example )account info?
............

also check my blog entry:

you could encrypt gmail credentials.... and have "backup" smtp servers:

http://sholliday.spaces.live.com/blog/

2/8/2006
Smarter Email/Smtp setup with DotNet Configuration Sections (1.1 and 2.0)

"Sin Jeong-hun" <ty*******@gmai l.comwrote in message
news:11******** **************@ l53g2000cwa.goo glegroups.com.. .
Hi.
I would like to let users send bug reports or other messages to me.
Maybe the easiest way to send e-mails from my application is just use
the default e-mail agent by executing a link
mailto://my****@domail.c om.

But this only works if the user has configured Outlook or something.
Many users use web-based mails here so if I do so, Outlook Express's a
new account wizard will pop-up. Futhure more this reveals user e-mails.
Some people want to be anonymous .

The second choise is to use SMTPClient. But to do so, either I have an
SMTP server that doesn't require login (I don't know any free SMTP
server like this) or should put my SMTP login information (for example,
my gmail credential) into the application. Of course, I don't want my
e-mail credential is embedded into the application.

I just want to send a simple text-based e-mail directly from the user's
computer like many other applications. I searched the internet but all
examples are based on the SMTPClient class. I found some direct sending
examples but they used commercial library (which is not free).

So, I've got to buy a library to send E-mail without SMTP client? Or is
there any free library? I just want to send very simple text-based
e-mails.

Thank you.

Jan 17 '07 #6

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

Similar topics

1
1450
by: Dan Beanweed | last post by:
I have this xslt : <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:param name="p" select="'q'"/> <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> <xsl:template match="/"> <xsl:element name="test">
10
1371
by: RD | last post by:
I am retrieving 6 fields from an SQL server 2000 table with following sql statement. SQL = "select Field1, field2, field3, field4, field5, field6 from table1" Last field ( field 6) is defined in table as ntext. I put them in datareader named dr. Dim dc1 As New OleDbCommand(Sql, conn) Dim dr1 As OleDbDataReader = dc.ExecuteReader(CommandBehavior.SequentialAccess)
0
1113
by: tony | last post by:
Hello! I'm not sure if this is the right group to send my question in. I have one solution file that consist of three project. One project that build the exe file called A One project that build a user control dll. In this user control we have a class called B One project that build a class library dll. In this class library we have a class called C
1
1932
by: leifwessman | last post by:
Google Analytics are using a encrypted JavaScript library to send and read 1st party cookies using. The JS library can be found here http://www.google-analytics.com/urchin.js Is there a free JS library available somewhere that mimics this behaviour? I would be very interested in how Google Analytics does the magic... More info here: http://www.google.com/support/urchin45/bin/answer.py?answer=28710
3
1979
by: Richard Carpenter | last post by:
I have a simple winform with a customers combobox, a "get orders" button and an orders grid. Due to other requirements, I have implemented the form to allow the user to select a customer from the combobox and click the "get orders" button to refresh the gridview with the selected customer's orders, via a GetDataByCustomerID stored procedure. The underlying Orders table includes, among others, three boolean columns and one particular...
3
3299
by: SimonPlatten | last post by:
Hi, I'm a software engineer working in the offshore industry, I've been coding in various languages professionally since 1987. In my present employment I am working with control systems in the oil and gas industry. Typically control systems use process control or scada systems to display and log data from various control environments. I am designing an Intranet using AJAX to acquire data from remote servers and present dynamic updates...
1
1802
by: rich_sposato | last post by:
I released version 2.0 of C++ Unit Test Library. You can download it from SourceForget.Net at http://sourceforge.net/projects/cppunittest/ .. I wrote this unit test library because other unit test frameworks always lacked features I considered important. Some only provided output in certain formats, and I had no easy way to choose my own format. Most provided no protection against exceptions. Only a few were useful for unit-testing...
3
2247
by: =?ISO-8859-1?Q?Tom=E1s_=D3_h=C9ilidhe?= | last post by:
(I have posted this separately to comp.lang.c++ and comp.lang.c, reason being that I'd like a response from both communities, but I haven't cross-posted it because I think it's best not to mix C and C++ discussion) I want to get into doing some network programming. I'd like to find a good cross-platform networking library, but failing that, I'd settle for something that'll work on Linux. I don't mind whether the libary is C or whether...
1
7572
by: Sylfelin | last post by:
Hello, If I use Microsoft Outlook 12.0 Object Library (Outlook 2007) COM Object in my application, the custommer must have the outlook 2007 on his computer ? But if i use Microsoft Outlook 11.0 Object Library (Outlook 2003) COM Object in my application, the custommer must have the outlook 2003 or outlook 2007 on his computer ?
24
2200
by: Aaron Gray | last post by:
From what I have been looking at for Javascript library development, browsers that support Javascript 1.5/ECMAScript 3/JScript 5.5 looks like the base level to pitch at. Anyone add anything ? Aaron
0
9453
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10099
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10036
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8929
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7451
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5354
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5481
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4007
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3607
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.