You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -333,8 +340,20 @@ public void AddCc(EmailAddress email, int personalizationIndex = 0, Personalizat
333
340
/// <param name="emails">A list of cc recipients. Each email object within this array may contain the recipient’s name, but must always contain the recipient’s email.</param>
334
341
/// <param name="personalizationIndex">Specify the index of the Personalization object where you want to add the cc emails.</param>
335
342
/// <param name="personalization">A personalization object to append to the message.</param>
343
+
/// <exception cref="System.ArgumentNullException">Thrown when the emails parameter is null</exception>
344
+
/// <exception cref="System.InvalidOperationException">Thrown when the emails parameter is empty</exception>
@@ -454,8 +480,20 @@ public void AddBcc(EmailAddress email, int personalizationIndex = 0, Personaliza
454
480
/// <param name="emails">A list of bcc recipients. Each email object within this array may contain the recipient’s name, but must always contain the recipient’s email.</param>
455
481
/// <param name="personalizationIndex">Specify the index of the Personalization object where you want to add the bcc emails.</param>
456
482
/// <param name="personalization">A personalization object to append to the message.</param>
483
+
/// <exception cref="System.ArgumentNullException">Thrown when the emails parameter is null</exception>
484
+
/// <exception cref="System.InvalidOperationException">Thrown when the emails parameter is empty</exception>
0 commit comments