Wrox Programmer Forums
|
Beginning PHP Beginning-level PHP discussions. More advanced coders should post to the Pro PHP forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Beginning PHP section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 27th, 2007, 02:43 AM
Registered User
 
Join Date: Mar 2007
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default Web page email

Hello friends

      How we can mail full web page to someone through PHP.
Please suggest me with code example.

Thanks

 
Old April 19th, 2007, 12:03 AM
Friend of Wrox
 
Join Date: Oct 2003
Posts: 479
Thanks: 0
Thanked 3 Times in 3 Posts
Send a message via MSN to surendran Send a message via Yahoo to surendran
Default

hi,
follow this, it is simple.
First upload your images,files inside the server.

write following code.

<?php
$Sender="surendran";
$sendermail="[email protected]";
$to="[email protected]";
$subject="hi";
$body="your page contents"; // open your page html code and paste look like $body='<html><body>your page html code</body></html>';
$str='<base href="http://www.servername.com/folder">';
$str=$str.$body;

        $headers = "MIME-Version: 1.0\r\n";
        $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
        $headers .= "From: $Sender <$sendermail>\r\n";
        if($str != "")
        {
              mail($to, $subject, $str , $headers);
        }
          else
        {
           print("<HTML><BODY>Error, no message were sent!");
           print("</BODY></HTML>");
        }
?>


surendran
(Anything is Possible)
http://ssuren.spaces.msn.com





Similar Threads
Thread Thread Starter Forum Replies Last Post
email- from web form pzmrcd .NET Framework 2.0 1 July 24th, 2007 11:29 AM
How to diplay web page inside another web page win cyberjoe C# 2 March 1st, 2007 05:35 AM
problem in web email encoding yoord ADO.NET 1 June 29th, 2004 10:58 PM
POP3 Web Email Client mvollmer Classic ASP Basics 2 March 9th, 2004 10:16 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.