Send email from PHP

Reply

Join Date: Nov 2007
Posts: 107
Reputation: kings has a little shameless behaviour in the past 
Solved Threads: 2
kings's Avatar
kings kings is offline Offline
Junior Poster

Re: Send email from PHP

 
0
  #11
Oct 29th, 2008
$fromEmail = "admin@domain.com"; 
$subject = "Welcome";
$body = "Hi,\n\nYou have visited the page.";
$sent=mail($Email, $subject, $body, $from) ;
if($sent)
{
  echo("<p>Message successfully sent!</p>");
 } else {
  echo("<p>Message delivery failed...</p>");
 }
Reply With Quote Quick reply to this message  
Join Date: Feb 2007
Posts: 1,607
Reputation: scru has a spectacular aura about scru has a spectacular aura about 
Solved Threads: 130
Featured Poster
scru's Avatar
scru scru is offline Offline
Posting Virtuoso

Re: Send email from PHP

 
0
  #12
Oct 29th, 2008
Hmm, maybe the PEAR mail extensions weren't installed. Do a page with just this code:
  1. <?php include "Mail.php"; ?>

If you still get that error, then you need to manually install the mail extensions
Reply With Quote Quick reply to this message  
Join Date: Jul 2008
Posts: 21
Reputation: enzogoy is an unknown quantity at this point 
Solved Threads: 0
enzogoy enzogoy is offline Offline
Newbie Poster

Re: Send email from PHP

 
0
  #13
Oct 29th, 2008
Hi scru,

Yeah, I'm in trouble of install the PEAR mail extensions. I download the file down and get into the commnd line. I use this command but it doesn't seem to do anything.

  1. C:\PHP\pear install -o mail-1.1.14

Could you please show me hwo to install it manually.
Thank you.
Enz
Reply With Quote Quick reply to this message  
Join Date: Jun 2009
Posts: 95
Reputation: gingank is an unknown quantity at this point 
Solved Threads: 0
gingank's Avatar
gingank gingank is offline Offline
Junior Poster in Training

Re: Send email from PHP

 
0
  #14
Jun 17th, 2009
I also facing the same problem !!

Please help
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC