Skip to content

Commit 36a89a8

Browse files
committed
tracking for transactional emails
1 parent 98fd1c3 commit 36a89a8

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

Sources/IndiePitcherSwift/dtos.swift

+17-1
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,12 @@ public struct SendEmail: Codable, Sendable {
233233
/// - subject: The subject of the email.
234234
/// - body: The body of the email.
235235
/// - 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.
236238
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
238242
) {
239243
self.to = to
240244
self.subject = subject
@@ -253,6 +257,18 @@ public struct SendEmail: Codable, Sendable {
253257

254258
/// The format of the body of the email. Can be `markdown` or `html`.
255259
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?
256272
}
257273

258274
/// Send an email to one of more registered contacts.

0 commit comments

Comments
 (0)