Plogger Support Forum - 'Email image to friend' link? Fri, 29 Mar 2024 13:31:15 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 'Email image to friend' link? http://www.plogger.org/forum/comments.php?DiscussionID=2972&Focus=11859#Comment_11859 http://www.plogger.org/forum/comments.php?DiscussionID=2972&Focus=11859#Comment_11859 Wed, 02 Dec 2009 07:33:41 +0000 bungle
Everything I've tried so far hasn't been working, at the best it includes a link to the gallery index, not the image itself. Plus including the message itself has been problematic, as it seems to cut out after a certain (very limited) character length.

If anyone could help me out it would be much appreciated! I'm a bit of a newbie at this sort of thing and I'm sure it's not too complicated, but I'm running around in circles.

Thanks in advance!]]>
'Email image to friend' link? http://www.plogger.org/forum/comments.php?DiscussionID=2972&Focus=11870#Comment_11870 http://www.plogger.org/forum/comments.php?DiscussionID=2972&Focus=11870#Comment_11870 Thu, 03 Dec 2009 23:10:16 +0000 bungle 'Email image to friend' link? http://www.plogger.org/forum/comments.php?DiscussionID=2972&Focus=11906#Comment_11906 http://www.plogger.org/forum/comments.php?DiscussionID=2972&Focus=11906#Comment_11906 Wed, 09 Dec 2009 04:28:19 +0000 bungle
It was actually a lot simpler than I thought. Ending up doing a PHP emailer form rather than a simple email link as it was more useful.

Just plugged the following line into a hidden form fields:

<?php
echo getenv("SERVER_NAME")."".$_SERVER["PHP_SELF"]."?level=picture&id=".$_GET['id'];
?>


which grabs and prints the URL, then had that sent to a php file and emailed.]]>
'Email image to friend' link? http://www.plogger.org/forum/comments.php?DiscussionID=2972&Focus=11908#Comment_11908 http://www.plogger.org/forum/comments.php?DiscussionID=2972&Focus=11908#Comment_11908 Wed, 09 Dec 2009 10:40:06 +0000 Huroman
Tks you for the tip.]]>