473,407 Members | 2,326 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,407 software developers and data experts.

Looking for suggestions

Hello all,

I would like to be able to use something like MSN messenger to notify people
that an event occured.

an example of this would be a sales guy is out on the road and places an
order for one of his customers.
our server would send out a message via email and something like MSN
messenger telling the manager an order has been placed.

in this day and age I wouldn't think this would need to be written from
scratch with apps like MSN, ICQ, YAHOO, AOL instant messengers.

thanks,
Jay
Nov 16 '05 #1
5 955
This is all you wold need to send out an email to a (most cell phones today
can recieve messages -phones) email address.
MailMessage Message = new MailMessage();
Message.To = "ma*****@somecompany.com";
Message.From = "se****@somecompany.com";
Message.Subject = "order recieved";
Message.Body = "what ever pleases you";

try
{
SmtpMail.SmtpServer = "your mail server name goes here";
SmtpMail.Send(Message);
}
this is from the System.Web.Mail namespace.(you could also add attachments
e.g. the order placed by your salesman).

HTH,
Vinny

"jayderk" wrote:
Hello all,

I would like to be able to use something like MSN messenger to notify people
that an event occured.

an example of this would be a sales guy is out on the road and places an
order for one of his customers.
our server would send out a message via email and something like MSN
messenger telling the manager an order has been placed.

in this day and age I wouldn't think this would need to be written from
scratch with apps like MSN, ICQ, YAHOO, AOL instant messengers.

thanks,
Jay

Nov 16 '05 #2
Thanks Vinny,
I don't think I was clear enough, I have been working with the email side of
things I am mainly concerned with the instant messenger side of the house.

regards,
Jay
"Vinny Vinn" <Vi*******@discussions.microsoft.com> wrote in message
news:56**********************************@microsof t.com...
This is all you wold need to send out an email to a (most cell phones today can recieve messages -phones) email address.
MailMessage Message = new MailMessage();
Message.To = "ma*****@somecompany.com";
Message.From = "se****@somecompany.com";
Message.Subject = "order recieved";
Message.Body = "what ever pleases you";

try
{
SmtpMail.SmtpServer = "your mail server name goes here";
SmtpMail.Send(Message);
}
this is from the System.Web.Mail namespace.(you could also add attachments
e.g. the order placed by your salesman).

HTH,
Vinny

"jayderk" wrote:
Hello all,

I would like to be able to use something like MSN messenger to notify people that an event occured.

an example of this would be a sales guy is out on the road and places an
order for one of his customers.
our server would send out a message via email and something like MSN
messenger telling the manager an order has been placed.

in this day and age I wouldn't think this would need to be written from
scratch with apps like MSN, ICQ, YAHOO, AOL instant messengers.

thanks,
Jay

Nov 16 '05 #3
jayderk wrote:
Hello all,

I would like to be able to use something like MSN messenger to notify people
that an event occured.

an example of this would be a sales guy is out on the road and places an
order for one of his customers.
our server would send out a message via email and something like MSN
messenger telling the manager an order has been placed.

in this day and age I wouldn't think this would need to be written from
scratch with apps like MSN, ICQ, YAHOO, AOL instant messengers.

thanks,
Jay

try the windows messenger api page at
http://tinyurl.com/nal2
hth

JB
Nov 16 '05 #4
Is this a vb.net or a real vb question? You've posed the question to both
forums.

--
Randy Birch
MS MVP Visual Basic
http://vbnet.mvps.org/
"The Last Gunslinger" <jb******@yahoo.com> wrote in message
news:DV*****************@news-server.bigpond.net.au...
: jayderk wrote:
:
: > Hello all,
: >
: > I would like to be able to use something like MSN messenger to notify
people
: > that an event occured.
: >
: > an example of this would be a sales guy is out on the road and places an
: > order for one of his customers.
: > our server would send out a message via email and something like MSN
: > messenger telling the manager an order has been placed.
: >
: > in this day and age I wouldn't think this would need to be written from
: > scratch with apps like MSN, ICQ, YAHOO, AOL instant messengers.
: >
: > thanks,
: > Jay
: >
: >
: try the windows messenger api page at
: http://tinyurl.com/nal2
: hth
:
: JB

Nov 16 '05 #5
it is for any language/platform that makes it easy
"Randy Birch" <rg************@mvps.org> wrote in message
news:ep**************@TK2MSFTNGP12.phx.gbl...
Is this a vb.net or a real vb question? You've posed the question to both
forums.

--
Randy Birch
MS MVP Visual Basic
http://vbnet.mvps.org/
"The Last Gunslinger" <jb******@yahoo.com> wrote in message
news:DV*****************@news-server.bigpond.net.au...
: jayderk wrote:
:
: > Hello all,
: >
: > I would like to be able to use something like MSN messenger to notify
people
: > that an event occured.
: >
: > an example of this would be a sales guy is out on the road and places an : > order for one of his customers.
: > our server would send out a message via email and something like MSN
: > messenger telling the manager an order has been placed.
: >
: > in this day and age I wouldn't think this would need to be written from : > scratch with apps like MSN, ICQ, YAHOO, AOL instant messengers.
: >
: > thanks,
: > Jay
: >
: >
: try the windows messenger api page at
: http://tinyurl.com/nal2
: hth
:
: JB

Nov 16 '05 #6

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

Similar topics

2
by: Wayne Wengert | last post by:
I hope this is an appropriate group for this question? I work with a non-profit group that uses SQL Server 2000 for their data backend. They have a moderate size web site with many data driven...
6
by: Shawn Wilson | last post by:
I have been an HTML guy for 8 years or so, but only last year started working with PHP. I dabbled in Perl and then moved to PHP after completing a couple projects in Perl. I'm thankful I did...
6
by: LenS | last post by:
Hello Was wandering if there is any place where some one could go to get mentoring on python coding. I have started coding in python but I am the only one in the shop using it. So there is no...
6
by: P Jones | last post by:
Hi, I support an enterprise web application (IE client) built in VB6, with about 200 classes, serving about 7000 users, running on 3 clustered servers. I need to incorporate web reporting for...
4
by: Gene Hubert | last post by:
I'm looking for a good coding project for the purpose of getting to the point of feeling proficient in VB.NET programming. I've read a few books, written several test apps, and have prior...
6
by: Bob Alston | last post by:
I am looking for Access reporting add-in that would be easy to use by end users. My key focus is on selection criteria. I am very happy with the Access report writer capabilities. As far as...
4
by: farseer | last post by:
Hi, I am looking for a free ASP based messageboard/forum software that is easy to install and has search capabilities. Any suggestions for web masters out there on what are the best free ASP...
6
by: Bob Alston | last post by:
I am looking for others who have built systems to scan documents, index them and then make them accessible from an Access database. My environment is a nonprofit with about 20-25 case workers who...
1
by: darrel | last post by:
Can anyone recommend a course/class/training event that focuses on OOP concepts in the context of ASP.net? My background: My education is in art/graphic design. Later spending most of my time...
0
by: krzysztof.konopko | last post by:
I know that the informations I provide may seem limited but maybe someone has solved similar problem. I am new in design patterns and I am quite confused who should control whom, how to configure...
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:
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
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,...
0
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...
0
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,...
0
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...

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.