in reply to Re: getnotes.pl
in thread getnotes.pl
Might want to replace
$val = sprintf "$doc. %s", $Document->GetFirstItem('Subject')->{Text};
with:
my $tempsub = $Document->GetFirstItem('Subject');
if ( defined($tempsub))
{
$tempsub = $tempsub->{Text};
}
else
{
$tempsub = "No Subject";
}
$val = sprintf "$doc. %s", $tempsub;
or something equivalent. Stops it knackering when some uncultured swine sends you an email with no subject title.