We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cebe45f commit da54f76Copy full SHA for da54f76
ExampleNet45ASPNetProject/SendGrid.ASPSamples/Service/SendGridEmailService.cs
@@ -38,7 +38,7 @@ public EmailResponse Send(EmailContract contract)
38
39
if (!string.IsNullOrWhiteSpace(contract.CcEmailAddress))
40
{
41
- emailMessage.AddBcc(new EmailAddress(contract.CcEmailAddress));
+ emailMessage.AddCc(new EmailAddress(contract.CcEmailAddress));
42
}
43
44
return ProcessResponse(_client.SendEmailAsync(emailMessage).Result);
@@ -72,4 +72,4 @@ private static EmailResponse ToMailResponse(Response response)
72
};
73
74
75
-}
+}
0 commit comments