We have created a tcl proc which will notify our users the number of charges that have been processed for the day. We created the proc using an argument so we can list several email addresses.
keylget args ARGS.TO to
keylget args ARGS.CC cc
keylget args ARGS.DEPT dept
keylget args ARGS.FROM from
keylget args ARGS.TITLE title
{TO testhisout@uchc.edu} {CC testccout@uchc.edu} {DEPT pharm_TEST} {FROM ITCloverpharmCharge@uchc.edu} {TITLE 2}
The email is working but it seems we can only use one email address for to and cc. We have tried to use quotes, and acutally set variable to “testthisout@uchc.edu;testccout@uchc.edu” which only sends the email to the second email address. What are we missing?
Thanks,
Laurie