473,770 Members | 6,713 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Send email without SMTP

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 without SMTP installed?
Mar 20 '06 #1
4 2259
What is the problem exactly with an SMTP server ? Is this that he don't want
an SMTP server at all or could it be just installed as a relay to the main
mail server ?

If he don't want an SMTP server at all, you could perhaps use a shared
location on the mail server (AFAIK if you create files in the appropriate
directory they are picked by the SMTP mail server) or perhaps call somekind
of process on this server (either using a web page, a web service, a DB,
remoting or whatever else is allowed) to send this mail directly from the
mail server.

A key point would be likely to understand what is the exact point that he
dislike (I'm not an admin but AFAIK a SMTP server is not evil in itself, the
problem is how well or bad it is configured).

The last resort would be to log all this let's say in a file or a log and
have something that delivers these files to you (using a network share or an
event log reporting tool ?)...

Good luck.

--
Patrice

"CLEAR-RCIC" <CL*******@disc ussions.microso ft.com> a écrit dans le message
de news: ED************* *************** **...icrosof t.com...
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 without SMTP installed?

Mar 20 '06 #2
CLEAR-RCIC wrote:
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 without SMTP
installed?


Well, not without an SMTP Server (as far as I know), but the SMTP server
is not required to be available locally. You can e.g. take your ISPs
Mailserver, even with User-Authentication. ..

Or take another approach, as Patrice suggested.

hth
Markus
Mar 20 '06 #3
Clearricic,

You can open the default email client from the client and ask him if he/she
will add some things and send that to you.

(It gives you than direct more information)

Cor
Mar 20 '06 #4
I'm not sure but he doesn't want SMTP on our web server. It sounds like
pointing it to SMPT on another server will be the best idea. Thanks for the
help everyone.

"Patrice" wrote:
What is the problem exactly with an SMTP server ? Is this that he don't want
an SMTP server at all or could it be just installed as a relay to the main
mail server ?

If he don't want an SMTP server at all, you could perhaps use a shared
location on the mail server (AFAIK if you create files in the appropriate
directory they are picked by the SMTP mail server) or perhaps call somekind
of process on this server (either using a web page, a web service, a DB,
remoting or whatever else is allowed) to send this mail directly from the
mail server.

A key point would be likely to understand what is the exact point that he
dislike (I'm not an admin but AFAIK a SMTP server is not evil in itself, the
problem is how well or bad it is configured).

The last resort would be to log all this let's say in a file or a log and
have something that delivers these files to you (using a network share or an
event log reporting tool ?)...

Good luck.

--
Patrice

"CLEAR-RCIC" <CL*******@disc ussions.microso ft.com> a écrit dans le message
de news: ED************* *************** **...icrosof t.com...
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 without SMTP installed?


Mar 20 '06 #5

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

Similar topics

11
12090
by: Google Mike | last post by:
I've got RH9 Linux with default PHP. Is there a way to send email on Linux to an Exchange Server from PHP and/or other tools when there is *NOT* SMTP access? Has anyone figured out a way to use PHP to get inside an OWA (Microsoft Outlook Web Access) website to send email that way? The reason I ask is because my corporate office is going to do away with our rogue SMTP server access and force everything through Exchange
1
6291
by: michi | last post by:
Hi there.... Got here a tricky thing with my SMTP. First I show you what works on my machine.. **This Works** SmtpMail.SmtpServer = "mail.gmx.net" <-gmx is my mail provider SmtpMail.Send"mymail@gmx.net", "somebody@xxx.ch", "sub",
3
3036
by: RN | last post by:
I am tired of sending mail from the built-in SMTP service for so many reasons (errors are nondescriptive in the event log, it doesn't let me control which IP address it sends from, and it identifies itself as the computer name which is not in domain.com format, triggering spam filter problems). Instead, I want to have my code send through an SMTP server of a company that we pay for mail service. But they require a username and password....
3
1834
by: Nathan Sokalski | last post by:
I have an ASP.NET page that sends a Mail.MailMessage to several email addresses (all mine). However, one of the addresses, the one ending in @verizon.net, does not seem to be recieving the message even though the other addresses are. I know the spelling is correct because I have tried sending messages from my other accounts to this address and have recieved them successfully. I also do not know of any junkmail filter that would delete the...
14
9143
by: supz | last post by:
Hi, I use the standard code given below to send an email from an ASP.NET web form. The code executes fine but no Email is sent. All emails get queued in the Inetpub mail queue. I'm using my local default SMTP Server and my from address is a valid Yahoo/Hotmail address. I have configures the local SMTP Server to allow the IP Address 127.0.0.1.
11
22375
by: fdu.xiaojf | last post by:
Hi, I just want to send a very simple email from within python. I think the standard module of smtpd in python can do this, but I haven't found documents about how to use it after googleing. Are there any examples of using smtpd ? I'm not an expert,so I need some examples to learn how to use it. Or maybe there is a better way to to this?
7
7744
by: oopsbabies | last post by:
Hello everyone, I am using Apache 1.3.33 as the web server and PHP version 4.3.10. My machine is using Windows XP 2002 professional edition which comes with a Windows firewall. I am using McAfee free edition for anti-virus. I use an ISP provider from my country and according to them I do not need to perform authentication while sending mails through their SMTP address. Thus I am using external SMTP server. I don't have IIS installed...
5
4222
by: Sin Jeong-hun | last post by:
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://mymail@domail.com. 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...
3
2881
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 an SMTP server like if I am myself an SMTP server that is forwarding a mail. What classes can be used on .NET FW 2? Thanks,
0
9425
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
10225
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10053
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
10001
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
8880
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
7415
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
6676
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5449
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3573
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.