Re: [PHP] Problem sending mail

2004-08-30 Thread Jason Wong
On Tuesday 31 August 2004 05:02, Zoran Lorkovic wrote: > $file = file_get_contents("text.inc"); > $start = "[start]"; > $end = "[/end]"; > $pos_start = strpos ($file, $start); > $pos_end = strpos ($file, $end); > $data = substr ($file, $pos_start, $pos_end); > mail ("[EMAIL

[PHP] Problem sending mail

2004-08-30 Thread Zoran Lorkovic
$file = file_get_contents("text.inc"); $start = "[start]"; $end = "[/end]"; $pos_start = strpos ($file, $start); $pos_end = strpos ($file, $end); $data = substr ($file, $pos_start, $pos_end); mail ("[EMAIL PROTECTED]", "My Subject", $data); This code works when I ca

[PHP] Problem sending mail with php

2001-06-20 Thread Lindsey
Hi, I have being using php for almost twelve months for sending mail to all my members. But now that i got a database which continue on growing (2500 member actually), so i found that php cann't deliver all the mail and it even make time out. Could any one help me in how i could control the sendin