win2k server 5.5.2
I found that iwsend_mail.ipl doesn't work so hot...
Having more than 2 people in my email group bombs. The e-mail gets sent (now in the right format) but the external task does not return proper
Try something like this in a WF with 2 members in the 'Reviewers' group (External Task).
__INSERT__( iw_get_mail_cmd('iwsend_mail','', "-t " . get_group_members('SERVER', 'Reviewers')));or this
__INSERT__( iw_get_mail_cmd('iwsend_mail','', "-t SERVER\\user1, SERVER\\user2,"));Then try something like this in a WF with 3 members in the 'Reviewers' group (External Task).
__INSERT__( iw_get_mail_cmd('iwsend_mail','', "-t " . get_group_members('SERVER', 'Reviewers')));or this
__INSERT__( iw_get_mail_cmd('iwsend_mail','', "-t SERVER\\user1, SERVER\\user2, SERVER\\user3"));What I have found out that is if there is a
SPACE or SPACES between the commas SERVER\\user1, SERVER\\user2, SERVER\\user3 it will bomb on my server but only if there is more than 2 members in that group.
Thanks in advance...
OH my iwsend_mail.ipl version is..
my $VERSION = "5.5.2 Build 9275 REL Interwoven 20020617";
If it works on your system and your iwsend mail is of a different version please post it as an attachment.
The Professor-