Hello,

On 01/08/2003 07:41 PM, Camelia Moldovan wrote:
Hi! Does anyone know something about this?

I have a web page (generated using php)and I want to send it by
email. I know how to send html emails using php but I don't know how
to email the current page. Please help.
Just use output buffering support to capture its output.

Alternatively you may try to pass its URL to fopen. You can also do that and pass the URL to this class function named AddFilePart.

http://www.phpclasses.org/mimemessage

Anyway, one thing for you to keep in mind is to avoid sending HTML only messages because that will make them be rejected by most SPAM filters. What you should do is to send an alternative text version along with the HTML version in the same message body. The class above comes with an example of how to do that.

--

Regards,
Manuel Lemos


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

Reply via email to