Send Mail without php mail() function

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   Send Mail without php mail() function
Gareth
CZ Addict
 Codezwiz Site Donator
Gareth has been a member for over 20 year's 20 Year Member
uk.gif
Occupation: Student, Webmaster
Gender: Male
Fav. Sports Team: Liverpool FC
Status: Offline
Joined: May 29, 2004
0.08 posts per day
Posts: 587
Points: 38,220
   
Hi again,

I am wondering if there is any way to send mail without the mail() function, because i havent got an smtp server, if anyone knows were to get one on the net, like someone that hosts it for me, that would be great, or if you could help me get the script or help me with it that would be great... my im is thunda_7k , ya dont have to do it thru there, i would probly understand more if you replied to the topic.. but anyways i really need that script

Thanks, Gareth




_________________
[ Register or login to view links on this board.]
Back to top Reply with quote
#2   
aUsTiN
CZ Active Member
usa.gif georgia.gif
Age: 41
Gender: Male
Website:
Status: Offline
Joined: Sep 09, 2003
0.02 posts per day
Posts: 142
Points: 57
  MSN Messenger 
phpBB has its own mail function, something similar to


         include_once($phpbb_root_path . './includes/emailer.'.$phpEx);
         $emailer = new emailer($board_config['smtp_delivery']);
            $email_headers = 'From: ' . $board_config['board_email'] . "\nReturn-Path: " . $board_config['board_email'] . "\n";
            $emailer->use_template('privmsg_notify', $to_userdata['user_lang']);
            $emailer->extra_headers($email_headers);
         $emailer->email_address($to_userdata['user_email']);
         $emailer->set_subject($lang['Notification_subject']);
         $emailer->send();
         $emailer->reset();



Reason i post phpBB is as you said, you use phpBB


Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum