r1.SetName(new JIString("dont@spam.com").Variant);
r2.SetName(new JIString("dont@spam2.com").Variant);
// r1 will be the 'to' address and r2 will be 'cc'-ied
r1.SetType(new JIVariant(JXCdoEnum.CdoRecipientType.CdoTo.intValue()));
r2.SetType(new JIVariant(JXCdoEnum.CdoRecipientType.CdoCc.intValue()));
// Each recipient added must be resolved before it can be used.
// 0 == false to inhibit dialog boxes from popping up
r1.Resolve(new JIVariant(0));
r2.Resolve(new JIVariant(0));