Skip to content

6.1.59

Choose a tag to compare

@PushwooshCI PushwooshCI released this 12 Aug 09:24
· 2 commits to master since this release

New Features

  • Added setEmails() for registering email addresses for the current user. Accepts a single address or an array; the success and fail callbacks report the actual result on both platforms

    Pushwoosh.setEmails(["user@example.com"],
        () => console.log("Email registered"),
        (error) => console.error(error)
    );
  • Added setUserEmails() for registering email addresses together with a user identifier, so push and email channels are matched to the same user. A separate setUserId() call is not required

    Pushwoosh.setUserEmails("user_12345", ["user@example.com"],
        () => console.log("Email registered"),
        (error) => console.error(error)
    );

Updated

  • Pushwoosh iOS SDK 7.2.3
  • Pushwoosh Android SDK 6.10.2