[PHP] Re: Mail() Failing to connect

2003-03-02 Thread Manuel Lemos
to see the SMTP dialog so you can figure what is the problem: http://www.phpclasses.org/mimemessage Use it in conjunction with this: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail function and Bcc restriction?

2003-03-02 Thread Manuel Lemos
separating them with commas , . -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Mailling question

2003-03-02 Thread Manuel Lemos
mail, etc...). http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: using php to rotate ad banners

2003-02-27 Thread Manuel Lemos
will learn more than you will possible learn from this list as this is not a trivial issue as you may imagine. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Mail (), BBC: recipients not receiving my Newsletter

2003-02-27 Thread Manuel Lemos
u can see the dialog with the SMTP server. That should help figuring what is your problem. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: using php to rotate ad banners

2003-02-26 Thread Manuel Lemos
t use phpAdsNew? http://www.phpadsnew.com/ -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Mail (), BBC: recipients not receiving my Newsletter

2003-02-26 Thread Manuel Lemos
tp://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: MIME help needed please...

2003-02-25 Thread Manuel Lemos
) function. You may want to try this class for composing and sending MIME messages as it works around some of those bugs: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Zend Encoder

2003-02-24 Thread Manuel Lemos
echnically possible to get your code decrypted because after all that is what happens before it is executed. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: emptying jammed mailbox by PHP?

2003-02-17 Thread Manuel Lemos
delete your messages. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: forking sendmail

2003-02-17 Thread Manuel Lemos
t away because if you attempt to deliver many messages at once you can exhaust your server resources easily and your script will break. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Duh uuh ?

2003-02-15 Thread Manuel Lemos
ontacting the author? He's probably the person that can help you more than anybody else. There are other calendar classes like this one that comes with examples: http://www.phpclasses.org/calendargenerator -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: HTML Mail problem

2003-02-15 Thread Manuel Lemos
diate complains from several concerned users. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: forking sendmail

2003-02-15 Thread Manuel Lemos
program directly. It comes with options to let you choose the appropriate sendmail delivery mode: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: HTML Mail problem

2003-02-15 Thread Manuel Lemos
ng. Have you tried the class I mentioned? It provides work around for some problematic situations. Regards, Manuel Lemos Mark. "Manuel Lemos" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, On 02/14/2003 01:56 PM, Mark McCulligh

[PHP] Re: HTML Mail problem

2003-02-14 Thread Manuel Lemos
with qmail-inject program: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: I need examples of WRITING to XML wth PHP

2003-02-13 Thread Manuel Lemos
riter -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: possible mail() bug

2003-02-11 Thread Manuel Lemos
properly. You may want to try this class that provides alternative means to send messages like using the sendmail program directly, qmail or SMTP instead of using the mail() function. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net

Re: [PHP] PHP Application Server

2003-02-05 Thread Manuel Lemos
sier for other developers to extend your project without many dependencies on the core of the project. Finally, as in every software project, nothing happens until somebody writes code, so do not get back here until you have something to show . :-) -- Regards, Manuel Lemos -- PHP General Mai

[PHP] Re: PHP Application Server

2003-02-05 Thread Manuel Lemos
ink it would be appropriate to develop a new SAPI driver that would make PHP run as standalone daemon accepting many custom protocol requests in parallel. All this is better said than done because it is not a trivial matter. In any case, good luck. -- Regards, Manuel Lemos -- PHP General Mai

[PHP] Re: relayed mail question

2003-02-03 Thread Manuel Lemos
Hello, On 02/03/2003 07:57 AM, Wmb wrote: <[EMAIL PROTECTED]>: Name service error for MAIL.rtinsmetsers.com: Host not found Because there is no DNS record for the domain MAIL.rtinsmetsers.com . -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Re: mailing with SMTP server requiring authentication

2003-02-02 Thread Manuel Lemos
() that emulates the mail() function except that it send the message through a SMTP server of your choice letting you specify the authentication credentials as you need: http://www.phpclasses.org/mimemessage You also need this: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos

[PHP] Re: XML PHP question

2003-01-30 Thread Manuel Lemos
good and recommended: http://en.static.phpclasses.org/products.html/id/1861007213.html http://en.static.phpclasses.org/products.html/id/0735712271.html -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Best PHP db wrapper?

2003-01-30 Thread Manuel Lemos
ect repository that you may learn all about it here: http://www.meta-language.net/ -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: multiple entry forms !!

2003-01-27 Thread Manuel Lemos
rg/multipageforms -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Masive mail Advice

2003-01-26 Thread Manuel Lemos
rately and so you may as well personalize the return path address. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Masive mail Advice

2003-01-26 Thread Manuel Lemos
Hello, On 01/26/2003 08:22 PM, Mark Charette wrote: -Original Message- From: Manuel Lemos [mailto:[EMAIL PROTECTED]] That number of messages is small and with today's servers you can queue that volume of personalized is less than a minute. Your problems will start as you enter i

[PHP] Re: Mass Mailing

2003-01-26 Thread Manuel Lemos
to accept the message to make it harder for spammers. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Masive mail Advice

2003-01-26 Thread Manuel Lemos
each recipient. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: OO2relation mapping

2003-01-26 Thread Manuel Lemos
ke to know about the overlap of the projects, so you just don't duplicate efforts re-inventing the wheel. If your project provides something better of something that Metastorage does not provide, I would most certainly would like to know. -- Regards, Manuel Lemos -- PHP General Mailing List

[PHP] Re: OO2relation mapping

2003-01-26 Thread Manuel Lemos
and debug manually. http://www.meta-language.net/news-2002-12-09-metastorage.html -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: OO2relation mapping

2003-01-25 Thread Manuel Lemos
//www.meta-language.net/news-2002-12-09-metastorage.html http://www.meta-language.net/metastorage.html -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: SMTP, mail() and piping directly into Sendmail, which is better?

2003-01-22 Thread Manuel Lemos
xt time it will run the queue. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: writing a newsletter program in php?

2003-01-22 Thread Manuel Lemos
ns, etc... and dedicating mailing list manager programs already do that. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Help with e-mail

2003-01-22 Thread Manuel Lemos
smtp_mail() emulates mail() completely with the advantage of features like authentication that mail() does not support. In that case you also need this other class for the actual SMTP delivery: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos -- PHP General Mailing List (http

[PHP] Re: PHP Review Site

2003-01-18 Thread Manuel Lemos
reviews, bu your work is exposed to tens of thousands of PHP users eager to learn about new classes. http://www.phpclasses.org/ -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: MIME email...

2003-01-16 Thread Manuel Lemos
those bugs of mail() function that affect mail systems differently. You may want to try this class that has workarounds for some of the mail() function bugs. It also makes it simple to compose multipart/alternative messages: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -

[PHP] Re: attach image with the mail command?

2003-01-14 Thread Manuel Lemos
? Either way, you may want to try this class: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Favorite Email validation routine?

2003-01-12 Thread Manuel Lemos
http://www.phpclasses.org/emailvalidation -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Medium to Large PHP Application Design

2003-01-10 Thread Manuel Lemos
work that usually would take weeks or months to develop with hand written code. Metastorage is Open Source is available here: http://www.meta-language.net/news-2002-12-09-metastorage.html http://www.meta-language.net/metastorage.html -- Regards, Manuel Lemos -- PHP General Mailing List

[PHP] Re: Need a suggestion on developing a php-related system

2003-01-07 Thread Manuel Lemos
mean exactly by captured and made available to internal staff? Do you mean aggregate from somewhere to a central place? Anyway, news feed compilation and aggregation leads to XML-RDF-RSS. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Re: test_smtp.php

2003-01-07 Thread Manuel Lemos
solve your problem to try the test_smtp_mail.php script instead. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: mail() not working on Win2k

2003-01-06 Thread Manuel Lemos
ages unlike the mail() function. Now it is up to you if you want to progress in solving your problem. Regards, Manuel Lemos -Original Message- From: Manuel Lemos [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 4:28 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: mail() not working o

[PHP] Re: mail() not working on Win2k

2003-01-06 Thread Manuel Lemos
7;s or anything turned on since it has built-in support for MySQL. Have you tried this alternative as I suggested in this other message to you? Many people solved their problem with it, so can you. http://news.php.net/article.php?group=php.general&article=130351 -- Regards, Manuel L

[PHP] Re: Dreaded Return-Path and mail()

2003-01-06 Thread Manuel Lemos
gards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Strange problem with MAIL (Correction)

2003-01-06 Thread Manuel Lemos
eaders but this class puts all the headers that should be there. It also provides mail() function replacement functions that use different delivery methods which often is a problem depending on your platform. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing

[PHP] Re: Strange problem with MAIL

2003-01-06 Thread Manuel Lemos
blem in PHP configuration, some times it is a problem in the actual mail implementation and other times it is a mail server problem. I think what is more important to start having an idea is for you to tell if you are hosted under Unix/Linux or Windows. -- Regards, Manuel Lemos -- PHP

Re: FW: [PHP] How to get the mail sending stuff to work on Win2k?

2003-01-05 Thread Manuel Lemos
the mail() function does not support: http://www.phpclasses.org/mimemessage To send via SMTP you also need this: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: How to attach a file to mail()

2003-01-03 Thread Manuel Lemos
o pass the file name of the uploaded file to add as an attachment: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Mass-mailing method

2003-01-02 Thread Manuel Lemos
uirks of using the mail() function. I use it to deliver in average 2 million message a month most of them with tens of thousands of recipients in Bcc:. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: 2 servers for mail implementation

2003-01-02 Thread Manuel Lemos
e-mail. In the Web server configure qmail smtproutes control variable pointing to the other server that will only allow relaying messages from the Web server. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Timeout during SMTP operation.

2003-01-02 Thread Manuel Lemos
k delivery. In that case you may want to try this class that comes with sub-classes that let you configure details of delivery depending on your local mailer. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Using mail() for mailist list app

2003-01-02 Thread Manuel Lemos
SENDMAIL_DELIVERY_DEFERRED to eliminate the queue time. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail attachments

2003-01-02 Thread Manuel Lemos
://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Flow diagrams

2002-12-27 Thread Manuel Lemos
them in target image format. In the pages above there are some links to the relevant GraphViz pages. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Flow diagrams.

2002-12-26 Thread Manuel Lemos
ay > that information as a process flow diagram. You may want to look at Metastorage that draws graphs of classes of objects that are stored in a database: http://www.meta-language.net/news-2002-12-09-metastorage.html http://www.meta-language.net/metastorage.html -- Regards, Manuel Lemos --

[PHP] Re: Email problems.

2002-12-22 Thread Manuel Lemos
tions? This is the page I want to send: http://www.violasystems.com/e-news/template.html You may want to try this class for composing messages that lets you add parts from files. Just specify the URL as filename: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP Ge

[PHP] Re: Mass Mailing

2002-12-22 Thread Manuel Lemos
does not unsubscribe bouncing addresses right away, the solution was to remove bouncing subscribers using an external validation procedure. I used this other class for the cleanup. After that it was a breeze. We had peaks of 10,000 messages sent per minute. http://www.phpclasses.org/emailvalidati

[PHP] Re: Mass Mailing

2002-12-21 Thread Manuel Lemos
ilar solution in C and does not take an etternity to develop and debug. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Metastorage generates Entity-Relationship class diagrams in UML

2002-12-09 Thread Manuel Lemos
the Metastorage documentation. Here you may find the complete announcement with example graphics and the relevant links: http://www.meta-language.net/news-2002-12-09-metastorage.html -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] ANNOUNCE: Metastorage object persistence API generator

2002-12-05 Thread Manuel Lemos
_ Released Metastorage generator Manuel Lemos, 2002-12-05 16:11:44 GMT Metastorage is an application that is capable of generating persistence layer APIs. It takes a component definition defined in the Component Persistence Markup Language (CPML), a XML based format, and generates

[PHP] ANNOUNCE: Metastorage object persistence API generator

2002-12-05 Thread Manuel Lemos
_ Released Metastorage generator Manuel Lemos, 2002-12-05 16:11:44 GMT Metastorage is an application that is capable of generating persistence layer APIs. It takes a component definition defined in the Component Persistence Markup Language (CPML), a XML based format, and generates

[PHP] Re: mail with CC and BCC

2002-12-03 Thread Manuel Lemos
[EMAIL PROTECTED]"); http://www.phpclasses.org/mimemessage If the mail() function is really not working, you may need to use also the smtp_message sub-class along with this other class for sending: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos -- PHP General Mailing L

[PHP] Re: sendmail problem!

2002-11-27 Thread Manuel Lemos
s to enable the immediate delivery mode. http://www.phpclasses.org/mimemessage I use that class with this other class for the same purpose as you to use the direct delivery mode using SMTP directly, thus without relying on SMTP: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos

[PHP] Re: My first XML!

2002-11-27 Thread Manuel Lemos
want to try this class to compose nicely formatted XML documents: http://www.phpclasses.org/xmlwriter Or even this that already converts the XML data from and to MySQL: http://www.phpclasses.org/mysql_xml -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Re: How to create zip files in PHP ?

2002-11-27 Thread Manuel Lemos
Hello, On 11/27/2002 01:08 PM, Php User wrote: How to create zip files in PHP ? I found that php's zip function are read only... Can any one help me with that ? You can find here a class ready to do exactly that: http://www.phpclasses.org/phpzip -- Regards, Manuel Lemos -

[PHP] Re: Multiple page form

2002-11-26 Thread Manuel Lemos
st_sequential_form_page.html -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Application with barcodes

2002-11-25 Thread Manuel Lemos
w.phpclasses.org/pdfbarcode128 http://www.phpclasses.org/barcode -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: help needed with forms

2002-11-21 Thread Manuel Lemos
box must be displayed which tells the user where he went wrong 2). Also the data that the user had entered on the form must not be reset to blank. This very popular class does exactlty what you need: http://www.phpclasses.org/formsgeneration -- Regards, Manuel Lemos -- PHP General Mail

[PHP] Re: mailing by SMTP

2002-11-19 Thread Manuel Lemos
, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Register_globals = off-compliant form class?

2002-11-16 Thread Manuel Lemos
the new version that deals with that. It is done but I need to update the documentation as well for a new feature regarding checkbox validated that had requests for. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: sendmail problem

2002-11-16 Thread Manuel Lemos
Hello, On 11/16/2002 04:53 PM, Jeff Bluemel wrote: anybody??? still haven't gotten this figure out. You may want to try this class and mail me back if it does not work: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos Jeff "Jeff Bluemel" <[EMAIL PR

Re: [PHP] how to generate ms-word files

2002-11-15 Thread Manuel Lemos
Hello, On 11/14/2002 02:17 PM, Tom Woody wrote: http://sourceforge.net/projects/php-doc-xls-gen/ This project doesn't seem to do anything. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Whats the deal with HotScripts.com?

2002-11-14 Thread Manuel Lemos
a very nice exposure. Feel free to try it at: http://www.phpclasses.org/ -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Open Source Presentation Tool

2002-11-13 Thread Manuel Lemos
erated with the new version will be available there? -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Open Source Presentation Tool

2002-11-13 Thread Manuel Lemos
should have at least of few examples of presentation generated by your tool so people can evaluate it and maybe start using it, but that is just my opinion of course. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Open Source Presentation Tool

2002-11-13 Thread Manuel Lemos
izing. I only asked for an example of a generated presentation. I am not interested in the code until I see an example because trying the code by myself will make me spend a lot of time guessing how everything works. If you do not have an example online to show, we can't evaluate it. --

Re: [PHP] Re: Open Source Presentation Tool

2002-11-13 Thread Manuel Lemos
ike I suggested, if you have a better example, just point the URL, because it will be impossible to evaluate the current possibilities of your presentation tool otherwise. Regards, Manuel Lemos On 11/13/2002 06:33 PM, Rasmus Lerdorf wrote: Nope, it does bullet-by-bullet rendering. It will e

Re: [PHP] Re: Open Source Presentation Tool

2002-11-13 Thread Manuel Lemos
e you need to show me a better example than the above of Sterling Hughes that is of this year. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Help needed with attachments

2002-11-13 Thread Manuel Lemos
needs to be accessible from the server because that is where PHP is running. Either you upload it or specify a URL of a public accessible file like the example of the class. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Re: mail() -> How to change the sender

2002-11-13 Thread Manuel Lemos
pecify the sender address using the Return-Path: header: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Open Source Presentation Tool

2002-11-13 Thread Manuel Lemos
helps me make people stay focused on the current point than I am presenting instead of getting distracted by the following points of the presentation that I have not talked about yet. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Open Source Presentation Tool

2002-11-13 Thread Manuel Lemos
s per page: http://www.meta-language.net/metal/metal.pdf Prestimel is Open Source and comes with some Linux distributions. Its home page is located here: http://oeh.tu-graz.ac.at/prestimel/ -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Generating MS Excel files with PHP

2002-11-12 Thread Manuel Lemos
you may find several solutions to generate Excel files: http://www.phpclasses.org/excel -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Send Attachment using Php

2002-11-12 Thread Manuel Lemos
mail me back: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: attachement

2002-11-10 Thread Manuel Lemos
TML versions, etc.. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Most current non-beta version, and bcc

2002-11-07 Thread Manuel Lemos
s. Any tests I do them myself. There are techniques to automate tests like those that are made by PHP QA team before each release. -- Regards, Manuel Lemos At 07:33 PM 11/7/02 -0200, you wrote: Hello, On 11/07/2002 05:48 PM, Jill S wrote: ... So, my questions are - Is the tech support guy c

[PHP] Re: Most current non-beta version, and bcc

2002-11-07 Thread Manuel Lemos
are also wrapper mail() emulating functions for directly using the sendmail or qmail programs to deliver the messages: http://www.phpclasses.org/mimemessage For SMTP delivery, you also need this: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos -- PHP General Mailing List (http

[PHP] Re: Bar Codes

2002-11-05 Thread Manuel Lemos
27;m developing this kind of application using php and I'm not sure which font I should upload to the server (it must be free) and if there is one. Maybe any of these classes can solve your problem: http://www.phpclasses.org/barcode128 http://www.phpclasses.org/barcode -- Regards, M

[PHP] Re: Database creating from XML file

2002-11-05 Thread Manuel Lemos
data that has been added to the database since the database was installed for the first time or installed for the last time. Metabase is Open Source and is available here: http://www.phpclasses.org/metabase -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: How to send mail with authentification?

2002-11-04 Thread Manuel Lemos
() that emulates the mail() function. It has some variables for setting the autentication credentials: http://www.phpclasses.org/mimemessage You also need this: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Multiple Addresses Mailer

2002-11-03 Thread Manuel Lemos
... Of course, you are already paying a lot of money for the dedicated resources. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Multiple Addresses Mailer

2002-11-03 Thread Manuel Lemos
ith up to 4 digits coming in... So, there you have it, some ISP may allow a number of messages upto a limit but you need to ask them to know what the limit is. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Send $out embedded in a mail in HTML FORMAT

2002-11-03 Thread Manuel Lemos
page, attachments, etc... http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Protecting your scripts

2002-11-02 Thread Manuel Lemos
within there php pages without them getting access to the source. http://pear.php.net/bcompiler -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: How to prevent failure email from being sent?

2002-10-31 Thread Manuel Lemos
: you can sort most of real responses from the bounces. However, keep in mind that some broken e-mail systems will not honour the return-path address and instead use address in From: and even the Reply-to: address. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: Good form class?

2002-10-31 Thread Manuel Lemos
g I found was either insecure (passing data about the form through hidden form fields) or just not what I needed. Any ideas? If you tried this class, have you found anything insecure on it? http://www.phpclasses.org/formsgeneration -- Regards, Manuel Lemos -- PHP General Mailing List (htt

[PHP] Re: Help with using phpmailer

2002-10-31 Thread Manuel Lemos
p you: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] XML to MS Word

2002-10-30 Thread Manuel Lemos
obsolete. But Office 11 files will be XML files. RTF is not a closed format. Just dig in the Internet and you will find the specs. OTOH, Office 11 XML will not be understood by any of the previous Word version, if anything else for a while now. -- Regards, Manuel Lemos -- PHP General Mai

[PHP] Re: a new XML Parser!

2002-10-30 Thread Manuel Lemos
with some nice examples and documentation to the PHP Classes site. Once it is publish about 50,000 users eager to know about new classes will receive a e-mail notification telling them about your class. http://www.phpclasses.org/ -- Regards, Manuel Lemos -- PHP General Mailing List

<    5   6   7   8   9   10   11   12   13   14   >