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 bf8e351 commit 1942ad3Copy full SHA for 1942ad3
src/Resend/EmailAttachment.cs
@@ -42,6 +42,17 @@ public class EmailAttachment
42
[JsonIgnore( Condition = JsonIgnoreCondition.WhenWritingNull )]
43
public string? ContentType { get; set; }
44
45
+ /// <summary>
46
+ /// Inline content identifier.
47
+ /// </summary>
48
+ /// <remarks>
49
+ /// Value can then be used as reference in HTML body using <code>cid</code>
50
+ /// scheme, e.g. <code><img src="cid:property-value" > /></code>.
51
+ /// </remarks>
52
+ [JsonPropertyName( "inline_content_id" )]
53
+ [JsonIgnore( Condition = JsonIgnoreCondition.WhenWritingNull )]
54
+ public string? InlineContentId { get; set; }
55
+
56
57
58
/// <summary>
0 commit comments