in reply to Lotus Email: Multiple Recipients

since it's called "AppendItemValue", maybe you need to call it multiple times?
foreach my $rcpt (@recipients) { $Document->AppendItemValue ("SendTo", $rcpt); }

Replies are listed 'Best First'.
Re: Re: Lotus Email: Multiple Recipients
by Bukharik (Initiate) on Jun 12, 2002 at 19:54 UTC
    very logical suggestion. i tried similar, which didn't work. i also tried a single string with comma-separated email addresses. in both cases, the email goes out to the first recipient and ignores the rest.