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 4b40f50 commit 972e799Copy full SHA for 972e799
src/Resend/EmailAttachment.cs
@@ -49,9 +49,9 @@ public class EmailAttachment
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" )]
+ [JsonPropertyName( "content_id" )]
53
[JsonIgnore( Condition = JsonIgnoreCondition.WhenWritingNull )]
54
- public string? InlineContentId { get; set; }
+ public string? ContentId { get; set; }
55
56
57
@@ -92,4 +92,4 @@ public static EmailAttachment From( string filename )
92
93
return attachment;
94
}
95
-}
+}
0 commit comments