GSM Sendy
Dùng để thu thập email của user, phục vụ marketing
1. Subscribe
void Subscribe(string email, string name, Dictionary<string, string> customFields = null, Action onSuccess = null, Action<long, string> onFail = null)GSMSendy.Subscribe("[email protected]", "tuyen", new Dictionary<string, string>() { { "giftcode", "SUB2023" } }, () =>
{
Debug.Log("Subscribe Success");
}, (statusCode,error) =>
{
if(statusCode==(long)StatusCode.Maintain)
{
//Xử lý khi có thông báo bảo trì
}
Debug.Log("Subscribe fail" + error);
});2. UnSubscribe
3. Delete Subscribe
4. Check Status
Last updated