@@ -234,7 +234,7 @@ public struct SendEmail: Codable, Sendable {
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
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.
237
+ /// - trackEmailLinkClicks: Whether to track when a users taps on a link in the email . Allow you to overwrite the project's global setting.
238
238
public init (
239
239
to: String , subject: String , body: String , bodyFormat: EmailBodyFormat ,
240
240
trackEmailOpens: Bool ? = nil ,
@@ -264,7 +264,7 @@ public struct SendEmail: Codable, Sendable {
264
264
/// - Default: `nil`- Uses the project's global setting.
265
265
public var trackEmailOpens : Bool ?
266
266
267
- /// Whether to track email opens .
267
+ /// Whether to track when a users taps on a link in the email .
268
268
///
269
269
/// Allow you to overwrite the project's global setting.
270
270
/// - Default: `nil`- Uses the project's global setting.
@@ -285,7 +285,7 @@ public struct SendEmailToContact: Codable, Sendable {
285
285
/// - delaySeconds: Delay sending of this email by the amount of seconds you provide.
286
286
/// - delayUntilDate: Delay sending of this email until specified date.
287
287
/// - trackEmailOpens: Whether to track email opens. Allow you to overwrite the project's global setting.
288
- /// - trackEmailLinkClicks: Whether to track email opens . Allow you to overwrite the project's global setting.
288
+ /// - trackEmailLinkClicks: Whether to track when a users taps on a link in the email . Allow you to overwrite the project's global setting.
289
289
public init (
290
290
contactEmail: String ? = nil , contactEmails: [ String ] ? = nil ,
291
291
subject: String , body: String , bodyFormat: EmailBodyFormat ,
@@ -333,7 +333,7 @@ public struct SendEmailToContact: Codable, Sendable {
333
333
/// - Default: `nil`- Uses the project's global setting.
334
334
public var trackEmailOpens : Bool ?
335
335
336
- /// Whether to track email opens .
336
+ /// Whether to track when a users taps on a link in the email .
337
337
///
338
338
/// Allow you to overwrite the project's global setting.
339
339
/// - Default: `nil`- Uses the project's global setting.
@@ -351,7 +351,7 @@ public struct SendEmailToMailingList: Codable, Sendable {
351
351
/// - delaySeconds: Delay sending of this email by the amount of seconds you provide.
352
352
/// - delayUntilDate: Delay sending of this email by the amount of seconds you provide.
353
353
/// - trackEmailOpens: Whether to track email opens. Allow you to overwrite the project's global setting.
354
- /// - trackEmailLinkClicks: Whether to track email opens . Allow you to overwrite the project's global setting.
354
+ /// - trackEmailLinkClicks: Whether to track when a users taps on a link in the email . Allow you to overwrite the project's global setting.
355
355
public init (
356
356
subject: String , body: String , bodyFormat: EmailBodyFormat ,
357
357
list: String = " important " , delaySeconds: TimeInterval ? = nil ,
@@ -392,7 +392,7 @@ public struct SendEmailToMailingList: Codable, Sendable {
392
392
/// - Default: `nil`- Uses the project's global setting.
393
393
public var trackEmailOpens : Bool ?
394
394
395
- /// Whether to track email opens .
395
+ /// Whether to track when a users taps on a link in the email .
396
396
///
397
397
/// Allow you to overwrite the project's global setting.
398
398
/// - Default: `nil`- Uses the project's global setting.
0 commit comments