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 75e5416 commit e66855aCopy full SHA for e66855a
src/SendGrid/Helpers/Mail/Model/Personalization.cs
@@ -36,6 +36,12 @@ public class Personalization
36
[JsonConverter(typeof(RemoveDuplicatesConverter<EmailAddress>))]
37
public List<EmailAddress> Bccs { get; set; }
38
39
+ /// <summary>
40
+ /// Gets or sets the from email address. The domain must match the domain of the from email property specified at root level of the request body.
41
+ /// </summary>
42
+ [JsonProperty(PropertyName = "from")]
43
+ public EmailAddress From { get; set; }
44
+
45
/// <summary>
46
/// Gets or sets the subject line of your email.
47
/// </summary>
0 commit comments