wap - sample code

Post Reply
developerlearn999
Posts: 85
Joined: Thu Jun 20, 2019 9:34 am

wap - sample code

Post by developerlearn999 » Tue Feb 18, 2020 12:25 pm

i can't find in the documents how send wap
can some one assiste?
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: wap - sample code

Post by alt » Tue Feb 18, 2020 4:44 pm

WAP Push message you can try to send with following code:

Code: Select all

_client.SubmitAsync(SMS.ForWapPush()
                .TransactionId(transactionId)
                .From("1111").To("60166609999")
                .Title("Google").Url("http://www.google.com")
                );
                
Post Reply