Hi all,
I’m trying to set up a “Email this page” link. I’ve searched but haven’t been able to find anything good. Either they’re all old school or not what I’m looking for.
Crate & Barrel’s site http://www.crateandbarrel.com is a great example of what I would like to accomplish. I’m creating an HTML website and would like to implement this feature relatively easily. Would I need PHP or another script? PHP doesn’t work with our servers so I would need an alternative to PHP.
I was advised to use cfmail and so far I have this in my html page which doesn’t work at all:
<li class=“email”><a href="#">Email this story</a></li>
<cfif IsDefined("form.email") AND IsValid("email", form.email)>
<!— send the email —>
<cfmail to="#form.email#" from="info@page.com" subject=“A subject”>
www.page.com
</cfmail>
</cfif>
Any help or at least a starting point would be very helpful!
Thanks so much!