Hi,
I don't think there is a built in way of doing this - but you could do it with a script, that would work out who hasn't got any links (but is registered), and then output a list of email addresses, which you could pass into the "custom email" system that GLinks has (i.e a custom list)
Something like this should work:
Code:
#!/usr/local/bin/perl
use strict;
use lib '
/path/to/your/admin';
use Links qw/$IN $DB $CFG/;
use GT::SQL::Condition;
use CGI::Carp qw(fatalsToBrowser);
local $SIG{__DIE__} = \&Links::fatal;
Links::init('
/path/to/your/admin');
print $IN->header();
my $user_sth = $DB->table('Users')->select( { Status => 'Registered' } ) || die $GT::SQL::error;
while (my $hit = $user_sth->fetchrow_hashref) {
if ($DB->table('Links')->count( { LinkOwner => $hit->{Username} } ) < 1) {
print qq|$hit->{Email}<br />|;
}
}
(totally untested, but should work fine)
BTW, be sure to edit the /path/to/your/admin bit to your GLinks admin path =)
Cheers
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work! Want to give me something back for my help? Please see my
Amazon Wish List GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500) Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin |
Pre-Made Template Sets |
FREE GLinks Plugins! Compare our different Plugin packages *new* Free CSS Templates