@@ -233,8 +233,12 @@ public struct SendEmail: Codable, Sendable {
233
233
/// - subject: The subject of the email.
234
234
/// - body: The body of the email.
235
235
/// - bodyFormat: The format of the body of the email. Can be `markdown` or `html`.
236
+ /// - trackEmailOpens: Whether to track email opens. Allow you to overwrite the project's global setting.
237
+ /// - trackEmailLinkClicks: Whether to track email opens. Allow you to overwrite the project's global setting.
236
238
public init (
237
- to: String , subject: String , body: String , bodyFormat: EmailBodyFormat
239
+ to: String , subject: String , body: String , bodyFormat: EmailBodyFormat ,
240
+ trackEmailOpens: Bool ? = nil ,
241
+ trackEmailLinkClicks: Bool ? = nil
238
242
) {
239
243
self . to = to
240
244
self . subject = subject
@@ -253,6 +257,18 @@ public struct SendEmail: Codable, Sendable {
253
257
254
258
/// The format of the body of the email. Can be `markdown` or `html`.
255
259
public var bodyFormat : EmailBodyFormat
260
+
261
+ /// Whether to track email opens.
262
+ ///
263
+ /// Allow you to overwrite the project's global setting.
264
+ /// - Default: `nil`- Uses the project's global setting.
265
+ public var trackEmailOpens : Bool ?
266
+
267
+ /// Whether to track email opens.
268
+ ///
269
+ /// Allow you to overwrite the project's global setting.
270
+ /// - Default: `nil`- Uses the project's global setting.
271
+ public var trackEmailLinkClicks : Bool ?
256
272
}
257
273
258
274
/// Send an email to one of more registered contacts.
0 commit comments