Re: [PHP] mail smtp class file

2001-11-21 Thread Michael P. Carel











thank you for that but we need a customized mailer system for our
development and im just new with this type of system, i just want to make
sure that i really understand the program flow of the mailer script .This is
just a start and the sample script is very simple to understand for a newbie
like me.

Any idea with my problem?


> You may want to look at something a little more robust.
>
> Try http://phpmailer.sourceforge.net
>
> Adding attachments and numerous other options is extremely easy.
>
> Quoting "Michael P. Carel" <[EMAIL PROTECTED]>:
>
> > Hi there,
> >
> > I've tried using the SMTP class file that was given by PHPGalaxy.com
> > previously in the mailing list, and have difficuties in using it. upon
the
> > execution of the script im recieving the mail but the content of the
mail
> > was the HEADER. Here's the script:
> >  > function sendmsg($to, $subject, $text, $from, $file, $type) {
> >  $content = fread(fopen($file,"r"),filesize($file));
> >  $content = chunk_split(base64_encode($content));
> >  $uid = strtoupper(md5(uniqid(time(;
> >  $name = basename($file);
> >  $header = "From: $from\nReply-To: $from\n";
> >  $header .= "MIME- Version: 1.0\n";
> >  $header .= "Content-Type: multipart/mixed; boundary=$uid\n";
> >  $header .= "--$uid\n";
> >  $header .= "Content-Type: text/plain;\n";
> >  $header .= "Content-Transfer-Encoding: 7bit\n\n";
> >  $header .= "$text\n";
> >  $header .= "--$uid\n";
> >  $header .= "Content-Type: $type; name=\"$name\"\n";
> >  $header .= "Content-Tranfer-Encoding: base64\n";
> >  $header .= "Content-Disposition: attachment; filename=\"$name\"\n\n";
> >  $header .= "$content\n";
> >  $header .= "--$uid--";
> >  mail($to, $subject, "", $header);
> >  return true;
> > }
> > $to = "[EMAIL PROTECTED]";
> > $subject = "test message";
> > $text = " This is just a test message from the MIS group";
> > $from = "[EMAIL PROTECTED]";
> > $file = "test.zip";
> > $type = "application/zip";
> > sendmsg($to, $subject, $text, $from, $file, $type);
> > print("message sent");
> > ?>
> >
> > And the email content was this:
> >
> > MIME- Version: 1.0
> > Content-Type: multipart/mixed; bountry=4C67EBB57A700797D865BFD2E30B7E01
> > --4C67EBB57A700797D865BFD2E30B7E01
> > Content-Type: text/plain
> > Content-Transfer-Encoding: 7bit
> >
> >  This is just a test message from the MIS group
> > --4C67EBB57A700797D865BFD2E30B7E01
> > Content-Type: application/zip; name="test.zip"
> > Content-Tranfer-Encoding: base64
> > Content-Disposition: attachment; filename="test.zip"
> >
> > dGhpcyBpcyBqdXN0IGEgdGVzdCB6aXAgZmlsZSBrdW5vISEhIQ==
> >
> > --4C67EBB57A700797D865BFD2E30B7E01--
> >
> > Any idea, im this new in this type of program.
> >
> >
> >
> >
> >
> > Regards,
> >
> > Mikecarel
> >
> >
> > --
> > 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]
> >
> >
>
>
>
>
> -
> This mail sent through IMP: http://horde.org/imp/


-- 
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] mail smtp class file

2001-11-21 Thread Michael P. Carel

Hi there,

I've tried using the SMTP class file that was given by PHPGalaxy.com
previously in the mailing list, and have difficuties in using it. upon the
execution of the script im recieving the mail but the content of the mail
was the HEADER. Here's the script:


And the email content was this:

MIME- Version: 1.0
Content-Type: multipart/mixed; bountry=4C67EBB57A700797D865BFD2E30B7E01
--4C67EBB57A700797D865BFD2E30B7E01
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

 This is just a test message from the MIS group
--4C67EBB57A700797D865BFD2E30B7E01
Content-Type: application/zip; name="test.zip"
Content-Tranfer-Encoding: base64
Content-Disposition: attachment; filename="test.zip"

dGhpcyBpcyBqdXN0IGEgdGVzdCB6aXAgZmlsZSBrdW5vISEhIQ==

--4C67EBB57A700797D865BFD2E30B7E01--

Any idea, im this new in this type of program.





Regards,

Mikecarel


-- 
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]