EmailMessage.AddCCRecipient

From Real Software Documentation

Jump to: navigation, search
Method
EmailMessage.AddCCRecipient ( Recipient as String )

Adds a CC recipient to the email.

Example

// add cc recipients
s = replaceAll(ccAddressFld.text,",",chr(13))
s = replaceAll(s,chr(13)+chr(10),chr(13))
for i = 1 to countFields(s,chr(13))
mail.addCCRecipient trim(nthField(s,chr(13),i))
next
Personal tools