Development Articles
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOtherDevelopment Articles

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #16  
Old January 13th, 2000, 06:59 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Email list solution, 15K+

Okay, but how do I contact you??? I need a phone number, email address, etc.

Mine:
856-582-1360
racer@soldiercity.com

Reply With Quote
  #17  
Old January 14th, 2000, 10:29 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Email list solution, 15K+

My e-mail address is .
webmaster@rapidtraffic.com

pw

Reply With Quote
  #18  
Old January 18th, 2000, 06:41 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
readfile doesn't return filecontents??

Hi,
I've got this little problem:
I experienced (and the PHP-manual also told me so),
that
Code:
$body = readfile("$filename")
puts the filecontents to standard-output and returns the filesize.

How can i read the contents of a file directly into a string, just as you said?

--
Arthur van Dam adam@cs.uu.nl
http://www.phys.uu.nl/~adam

Reply With Quote
  #19  
Old January 30th, 2000, 01:28 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
I give up

I downloaded the source zip..and then uploaded it to my server..everything works fine except when I hit the make list..it says page cannot be found. If I type the addy in directly, I can goto that page fine. I checked to make sure the URL was right..I dunno what else to try.

Reply With Quote
  #20  
Old February 4th, 2000, 07:08 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
mail() function gives problem

The following code is sample email PHP3 script which sends only last 2 account HOTMAIL & YAHOO mail account. We couldn't receive mail on first four mail account created through our company account called netwebsol. But our company account normally recieving mails which was send through HOTMAIL or YAHOO.

Do we need to add any thing extra in MAIL() function?

please help me.



<?
$message = "New Test Sample Message";

$address1 = "rec1@netwebsol.com";
$address2 = "mail@netwebsol.com";
$address3 = "ajay@netwebsol.com";
$address4 = "rec2@netwebsol.com";
$address5 = "ajaysartape@hotmail.com";
$address6 = "christoemail@yahoo.com";

$adminaddress = "mail@netwebsol.com";


mail("TO:$address1","CarerrCELL Testing","$message","FROM:$adminaddress");
mail("TO:$address2","CarerrCELL Testing","$message","FROM:$adminaddress");
mail("TO:$address3","CarerrCELL Testing","$message","FROM:$adminaddress");
mail("TO:$address4","CarerrCELL Testing","$message","FROM:$adminaddress");
mail("TO:$address5","CarerrCELL Testing","$message","FROM:$adminaddress");
mail("TO:$address6","CarerrCELL Testing","$message","FROM:$adminaddress");

echo "mail successfully";
?>

Reply With Quote
  #21  
Old February 13th, 2000, 12:38 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Author's note on file read/write

The author warns of opening a file for simultaneous read and write and the inherent problems. While the problem of poorly designed programs may cause truncated files, his suggestion of reading the file, closing and re-opening for write has another problem... You cannot guarantee that you will not lose information when more than 1 person is updating the file at a time. Take the following scenario:
<br>
User A - reads file into array (a,b,c)
<br>
User B - reads file into array (a,b,c)
<br>
User A - adds element d
<br>
User B - adds element e
<br>
User A - writes array (a,b,c,d) to file
<br>
User B - writes array (a,b,c,e) to file
<br>
Since B knew nothing about element d when it went to write the file, and the file was not locked, element d was removed during the write. In short, this is very poor programming practice. A program should modify/write only the portion of the data it is actively changing/adding. It also is in poor design from a performance standpoint.

Reply With Quote
  #22  
Old February 16th, 2000, 01:54 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
mail() function gives problem

Hi Richard Lynch,

I have a PHP3 script which does not sent mail to those who are created using POP3. but it sends to those addreess which are web based mail like YAHOO , HOTMAIL etc.... I don't understand. Please help me.

The POP3 mails Account are normally receiving mails properly. Only PHP3 script unable to send the mails.

Thanks in advance

Code:
<?
$message = "New Test Sample Message";

$address1 = "rec1@netwebsol.com"; /* POP3 fails  */
$address2 = "rec2@netwebsol.com"; /* POP3 fails  */
$address3 = "mail@netwebsol.com"; /* POP3 fails  */
$address4 = "ajay@netwebsol.com"; /* POP3 fails  */
$address5 = "christo321@hotmail.com"; /* success  */
$address6 = "christoemail@yahoo.com"; /* success  */

$adminaddress = "mail@netwebsol.com";

mail("$address1","CarerrCELL Testing","$message","FROM:$adminaddress");
mail("$address2","CarerrCELL Testing","$message","FROM:$adminaddress");
mail("$address3","CarerrCELL Testing","$message","FROM:$adminaddress");
mail("$address4","CarerrCELL Testing","$message","FROM:$adminaddress");
mail("$address5","CarerrCELL Testing","$message","FROM:$adminaddress");
mail("$address6","CarerrCELL Testing","$message","FROM:$adminaddress");

echo "all mails mailed successfully";
?>


Reply With Quote
  #23  
Old February 17th, 2000, 12:41 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Mail() command unsupported

Hi,

This PHP script is very interesting...
But I have a little problem: mail() command is unsupported by my provider !

Do you know a solution to use this script with any mail() command ?
How can we replace it ?

Thanks in advanace
Best Regards

HV

Reply With Quote
  #24  
Old February 19th, 2000, 04:20 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
same probRlist solut

I currently use Cold Fusion 4.0 and hit it against SQL Server 7.0/NT 4.0 Workstation and SendMail/Linux box, but only send 1000 at a time. Our list might grow to 30K+ next month and am also looking for something that can handle this. Currently looking at MajorDomo .. any suggestions!?!

Reply With Quote
  #25  
Old February 19th, 2000, 05:01 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
MajorDomoRhe?

I just setup majordomo, but have not used it on our list of about 13K and growing users. Can majordomo handle this? I also would prefer something away from Perl.

Reply With Quote
  #26  
Old February 19th, 2000, 10:39 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: same probRlist solut

Hello,

We're still doing it ourselves for now but I think we might go with a company called ISMax at www.ismax.com. All they do is outsourced email . . . their prices are reasonable . . . however you pay per email sent so there is an incentive to not send mail.

You can talk to Wayne Getchell wayneg@ismax.com, he is very helpful and knowledgeable.

Reply With Quote
  #27  
Old February 23rd, 2000, 12:11 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: I give up

I had this problem too. You need to set the permission of data/lists.txt to 666 and then it should work ok.

Steph

Reply With Quote
  #28  
Old April 10th, 2000, 04:03 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
multiple lists

I have the mailing list manager working well with only a few modifications. My question is how would I set it up so I can send to multiple lists.
<br>
<br>
I believe I will have to set the select options as an array, but am unsure of the best way to do this. I am also having trouble exploding the array in the sendmail.php3 file.
<br>
<br>
Does anyone have a solution for this? I would really like to see some code examples for a solution to this question.
<br>
<br>
Thanks in advance.

Reply With Quote
  #29  
Old April 11th, 2000, 08:25 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
web based e-mail ??HOW TO?

HOW TO MAKE A WEB BASED E-MAIL,
LIKE MAIL.YAHOO/HOTMAIL/MAILCITY??

THX U.

Reply With Quote
  #30  
Old April 19th, 2000, 03:48 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Header information

I have the script installed and running...however the header information is sent with the last email addy only! The other addresses are sent with default return address of the server not the one i specified...

Any thoughts?


Reply With Quote
Reply

Viewing: Dev Shed ForumsOtherDevelopment Articles > Creating a Mailing List Manager with PHP


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump



 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support |