Have you used the tried and true "file/send/link by email" menu from Internet Explorer or the "file/send link..." menu of Firefox? (If you are using a different browser, I am sure it has the equivalent.)
If you wish a link within your album, I have not seen that done yet.
It's a simple php page I called with in overlay Iframe (as orkut is doing for photo uploading). In which I am passing some parameters like image location & ID.
Page contains tell a friend form. That user has to fill. In the back-end it's getting all the parameter of HTML-form & passing to php mailer (http://phpmailer.sourceforge.net) for sending HTML mail.
Comments
If you wish a link within your album, I have not seen that done yet.
You can look at sample http://actress.bollysite.com/kingfisher-calendar/kf2005_2.jpg.php
Page contains tell a friend form. That user has to fill. In the back-end it's getting all the parameter of HTML-form & passing to php mailer (http://phpmailer.sourceforge.net) for sending HTML mail.
Use following code:-
<?php
$server = $_SERVER['HTTP_HOST'];
$uri = $_SERVER['REQUEST_URI'];
$pageURL = 'http://'.$server.$uri;
?>
< a href="tellafriend.php?url=<?=$pageURL?>" ...