wap - sample code

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

wap - sample code

Post by developerlearn999 »

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

Re: wap - sample code

Post by alt »

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