made tracking options and queue required for transactional emails since the api refuse the action without them despite the documentation claiming it is not require
This commit is contained in:
parent
40da80160c
commit
ceb0ae60b0
@ -8,7 +8,7 @@ public class SendEmailOptions
|
||||
public required Sender Sender { get; set; }
|
||||
public required EmailContent Content { get; set; }
|
||||
public long? GroupId { get; set; }
|
||||
public TrackingOptions? Tracking { get; set; }
|
||||
public required TrackingOptions Tracking { get; set; }
|
||||
public IEnumerable<CustomAttribute>? AdditionalHeaders { get; set; }
|
||||
public long? Queue { get; set; }
|
||||
public required long Queue { get; set; }
|
||||
}
|
Loading…
Reference in New Issue
Block a user