Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Detail URL in an Email

Quote Reply
Detail URL in an Email
How do I show a linkowner their Detail Page url in an email?
Also, If a linkowner is listed in more that one category, how do Iist all.
Quote Reply
Re: [Sies] Detail URL in an Email In reply to
Hi,

Which email are you trying to send it in? There are a LOT of emails that get sent out Wink

Quote:
Also, If a linkowner is listed in more that one category, how do Iist all.

Thats not quite so easy - as <%detailed_url%> would be generated just with 1 category (even if you have more than 1 category assigned, it will just choose the 1st one it comes across)

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Detail URL in an Email In reply to
I'm sending emails to selected linkowners.
<%Title%>
<%Contact_Name%>
<%Adress1%>
<%City%>, <%State%> <%ZIP%>

Hello <%Contact_Name%>,


When I put this tag in, it doesn't show <%detailed_url%>
Quote Reply
Re: [Sies] Detail URL in an Email In reply to
Hi,

You probably need a custom global to do it. Something like:

get_detailed_url
Code:
sub {
return $CFG->{build_detail_url} . "/" . $DB->table('Links')->detailed_url( $_[0] );
}

Then call with:

Code:
Your detailed page can be found here: <%get_detailed_url($ID)%>

Hope that helps.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Detail URL in an Email In reply to
It works fine, thanks