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

How to Send Email

Hii
I am Beginner to perl..I need to send a notification mail to a user tht is when a person excutes the program.....(mean automatically a mail should be sent to a id) i searched in the net... i came to know should install Mail::Mailer or sender.pm or lite packages... i dont know which one to install and how to write the program ??? an idea....Thanks in advance!
Mar 16 '07 #1
2 1471
KevinADC
4,059 Expert 2GB
you probably don't need to install anything if there is already sendmail or qmail or other email application installed on the server. Just pipe the email out to one of those applications. Or use the MIME::Lite module. It may have to be installed though.
Mar 16 '07 #2
I'm a beginner too, but this is the code I've been taught -- for use with a UNIX/Linux environment:

Expand|Select|Wrap|Line Numbers
  1. #!/usr/bin/perl
  2. #
  3. # Email program - sends message to administrator
  4. #
  5.  
  6. my $sendmail = '/usr/sbin/sendmail'; # this is different on some systems, use "whereis sendmail" to find the exact location
  7. my $destination = 'admin@somewhere.com.au';
  8. my $sender = 'admin@somewhere-else.com.au';
  9.  
  10. # send the email
  11.  
  12. open MAIL, "|$sendmail -oi -t" or die "Can't open pipe to Sendmail: $!\n";
  13.  
  14. print MAIL <<"EOF";
  15. To: $destination
  16. From: $sender
  17. Subject: This is the subject line
  18.  
  19. Hello there,
  20.  
  21. This is a message
  22.  
  23. Thank you for your assistance.
  24.  
  25. Regards,
  26. David
  27.  
  28. EOF
  29. # remember that ONLY "EOF" can show on the line
  30.  
  31. close MAIL or die "Can't close pipe to Sendmail: $!\n";
  32.  
  33. # end of program
  34.  
David
Mar 22 '07 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

11
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...
40
by: ian | last post by:
Hi, I'm a newbie (oh no I can here you say.... another one...) How can I get Python to send emails using the default windows email client (eg outlook express)? I thought I could just do the...
0
by: David Burson | last post by:
Hi, I have a VB.NET windows app that needs to automatically send a simple text email when my users run a new version of the app for the first time. I thought this would be simple, but after...
9
by: Bob Jones | last post by:
We have developed a commercial ASP.net application (personal nutrition management and tracking); we want to send smtp email from within it. For our development box, we use WinXP Pro, IIS 5.5,...
3
by: Gerard | last post by:
Hello I have created a windows service to monitor a database, it starts some checks when a timer elapses. The checks send emails depending on their findings. My issue is that when I created a...
14
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...
8
by: shapper | last post by:
Hello, I am trying to send an email using Asp.Net 2.0. I am getting the following error: System.Net.Mail.SmtpFailedRecipientException: Mailbox unavailable. The server response was: No such...
9
by: Mahernoz | last post by:
Can i send an email from JavaScript? Is it possible? If yes please the code to send email using javascript...
2
by: Malli mindwave | last post by:
Hi, We are using the yahoowebHostiing service for my company website, In that one screen of the SendComments/FeedBack section is there, I'm basically dot.net develeoper ,but yahoowebhosting not...
5
by: Mike | last post by:
I have a page with a textbox that a user can enter in mutliple email addresses such as: user1@yahoo.com;user2@yahoo.com;user3@gmail.com; and so on, I then have a foreach loop to get all of the...
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?
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
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...
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.