I want to send note to a group name in different domain, and every member of the group receive the note, but they will not see member names on To: line, only see group name. I searched in the forum and cannot find the answer. I know groupDB and server name. forexample, groupDB is test.nsf, and server name is test. then should I add @domain to the end of the group name like groupname@test ? any idea
Subject: How send note to a group that show group name only on memo?
Use $ExpandGroups http://www-10.lotus.com/ldd/nd6forum.nsf/55c38d716d632d9b8525689b005ba1c0/c83d8d84002e2c6285256e130068495f?OpenDocument
Alternatively, address the mail to the group, using the BCC field, then the group members cannot “see” each other.
Subject: RE: How send note to a group that show group name only on memo?
thanks for the response. I will do BCC… but To: line needs show a group name. I cannot leave it blank. Any idea?
Subject: RE: How send note to a group that show group name only on memo?
You could set the SendTo name to a “dummy” internet email address, that would use a proper RFC 821 phrase to display the way you want it.
Something along the lines of…
Call doc.replaceItemValue(“SendTo”, “All Newsletter Recipients blackhole@yourorg.com”)
Call doc.replaceItemValue(“BlindCopyTo”, “TheGroupName”)
Subject: RE: How send note to a group that show group name only on memo?
thanks so much. It helps me a lot. One problem is that I have more than 2 group names.I tried Call doc.replaceItemValue(“SendTo”, varGroups+"yourname@your.com"), it did not work. because varGroups is variant type. How to do that?If I want to send to two or more groups and 4 or more individuals both. How can I handle with it?