[PHP] Send an e-mail witdh php

2001-11-22 Thread Henk

Hello,

I want to send an e-mail to one address(To) and many carbon copies to many
e-mailadresses(BCC).

Is there a class to do this??

Henk



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Send an e-mail witdh php

2001-11-22 Thread Henk

That doesn't work. He is gives the error:

Failed to Connect


Henk

Sebastian Wenleder [EMAIL PROTECTED] wrote in message
news:p0510030ab822a385d74e@[192.168.100.2]...
 Hello,
 
 I want to send an e-mail to one address(To) and many carbon copies to
many
 e-mailadresses(BCC).
 
 Is there a class to do this??
 
 Henk


 Hi Henk,

 You don't need a special class, just use:

 $to = [EMAIL PROTECTED];
 $subject = Your Subject;
 $messages = some text you want to send...;
 $headers = CC: firstname[EMAIL PROTECTED], [EMAIL PROTECTED],;
 $headers .= [EMAIL PROTECTED]\n;
 $headers .= From: Your name[EMAIL PROTECTED]\n;

 mail ($to, $subject, $message , $headers);

 Best,
 Sebastian



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Uploading to Apache server from VB

2001-12-03 Thread Henk Sandkuyl

Hello,

I have a VB program which can download files from a web-site. The webserver
is running Apache where we use PHP scripting. That is all working OK. 

Now I want to let certain people upload data from their PC's. I don't want
to use FTP, because I don't want to hand out password's (also not in the
code we are distributing). Anonymous FTP is not possible.

I can upload files to the site from a browser, but I would to make it (very)
easy for people to upload their data: a number of them are not very familiar
with computers.

I have seen (www.google.com) references to uploading from VB to IIS servers,
but how about to Apache/PHP? I've tried some examples with the MicroSoft
Internet Control and executing the POST command, but the file would not
be uploaded (the PHP script did not get it anyway).

Should it be possible?
If so, can somebody point in the right direction/example?
If not, could somebody please explain why not?

Thanks in advance for your help,

henk sandkuyl


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] pdf information..

2003-07-16 Thread Henk Sandkuyl
Enda Nagle [EMAIL PROTECTED] wrote:
 I used FPDF (http://www.fpdf.org) to do a system for a customer where he
 could generate invoices and shipping labels.

 I just used A4 page size but I remember seeing in the documentation that
 you can specify sizes of pages etc.

 Also the PDFs work on mm, not pixels.

Do you mean that you have to use 'mm' when working with FPDF?
If so, that is not correct. When you construct the FPDF object, you
can specify how you want to work: points, cm, mm or inches. 

 I know you can embed 300dpi images into the PDF, any time I printed them
 they turned out ok.

 Best of all, its free and you don't need to use PDF Lib.

Yes, i like it and use it on our website.

 Enda
 --

 -Original Message-
 From: Louie Miranda [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, July 16, 2003 8:30 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP] pdf information..


 Hello,

 I have been given a task to generate a business card program over the
 web. The option that i can think of it to make it easier is generate a
 pdf based on the user's experience over my preview program on the web.

 Now im wondering does pdf have those image resolution size? I mean on
 image you can specify 100x100 pixels and make the resolution into
 300dpi. How about pdf?

 --
 Thank you,
 Louie Miranda ([EMAIL PROTECTED])



 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php

cheers,

Henk Sandkuyl


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php