Search found 12 matches

by CRichardson
Wed May 06, 2009 3:38 am
Forum: PHP - Code
Topic: Calendar - Events to span multiple days
Replies: 1
Views: 409

Calendar - Events to span multiple days

I am in the process of developing a calendar application . At the moment I am trying to find a method which allows events to span over multiple days . It has already caused many hours of problems! Storing and retrieving the information is not a problem. For example, let's say an event starts on 01/0...
by CRichardson
Fri Aug 24, 2007 7:29 am
Forum: Swift Mailer
Topic: Cut off Emails
Replies: 19
Views: 9240

d11wtq wrote:Guys, could you download version 3.3.1 and let me know if this fixes the problem please? :)
Thanks, uploading this now. Will let you know within the next 24 hours :)
by CRichardson
Fri Aug 24, 2007 4:21 am
Forum: Swift Mailer
Topic: Unrecognized Commands
Replies: 5
Views: 2338

Thanks for your quick reply :)
by CRichardson
Fri Aug 24, 2007 4:21 am
Forum: Swift Mailer
Topic: Unrecognized Commands
Replies: 5
Views: 2338

Also I need to upgrade from version 3.2.5.

Anything changed between the versions?
by CRichardson
Thu Aug 23, 2007 6:00 pm
Forum: Swift Mailer
Topic: Unrecognized Commands
Replies: 5
Views: 2338

Unrecognized Commands

My connection to the MAIL server keeps being dropped because part of the mail is not being sent properly. The log tells me: 2007-08-23 18:02:32 SMTP call from XXX [XXX] dropped: too many unrecognized commands (last was "r/>Y sobre la gala (que os recuerdo ser=C3=A1 el d=C3=ADa 16 de septiembr=&...
by CRichardson
Mon Jul 30, 2007 6:41 am
Forum: Swift Mailer
Topic: Command 'MAIL FROM: '
Replies: 1
Views: 1357

Command 'MAIL FROM: '

Keep getting the following error after around 100 e-mails:
The SMTP connection did not allow the command 'MAIL FROM: ' to be sent.
Any ideas as to why/how to fix it?
by CRichardson
Sun Jun 03, 2007 9:01 am
Forum: Swift Mailer
Topic: 300+ e-mails per hour with different content
Replies: 10
Views: 5090

What is the best way to ensure you don't create an infinite loop?

Code: Select all

while($fetch=mysql_fetch_assoc($result)) {

}
Is that infinite? Surely not because it only runs till there is no more rows left?
by CRichardson
Sun Jun 03, 2007 8:24 am
Forum: Swift Mailer
Topic: 300+ e-mails per hour with different content
Replies: 10
Views: 5090

Note: when I run the script in FireFox after a certain amount of time it wants me to download the file and in IE after the same amount of time it gives me "Page cannot be displayed". The bandwidth monitor gave me the following going out: 2625 34660 53480 56080 62688 137839 143497 146122 14...
by CRichardson
Sun Jun 03, 2007 8:20 am
Forum: Swift Mailer
Topic: 300+ e-mails per hour with different content
Replies: 10
Views: 5090

Yea, you could call it that. The content will most likely change every hour! The same number of e-mails per hour will be sent (to a degree). I've tried the AntiFlood plugin, which works up until 101 e-mails. I've had so many problems, including: - mysql connection closing itself - php timing out - m...
by CRichardson
Sun Jun 03, 2007 8:12 am
Forum: Swift Mailer
Topic: 300+ e-mails per hour with different content
Replies: 10
Views: 5090

There has to be a strict hour between each e-mail sent. So, User1 should get one e-mail every 60 minutes! The same goes for all 300+ users. The script I use simply queries the database, finds the required people and within a "while" statement sends the e-mails. So in answer to your questio...
by CRichardson
Sun Jun 03, 2007 7:33 am
Forum: Swift Mailer
Topic: 300+ e-mails per hour with different content
Replies: 10
Views: 5090

Depending upon the amount of variation between these emails you may be interested in looking at the decorator plugin. 300 emails per hour is quite low, but in the interest of scalability I'd probably do it by cron. You throw the emails into a database, marked as "unsent", then the cron sc...
by CRichardson
Sun Jun 03, 2007 5:43 am
Forum: Swift Mailer
Topic: 300+ e-mails per hour with different content
Replies: 10
Views: 5090

300+ e-mails per hour with different content

I run a website which sends out over 300 e-mails per hour each with different user-specific content.

What is the best method of doing this?