Class SmsClient

java.lang.Object
com.azure.communication.sms.SmsClient

public final class SmsClient extends Object
Client for sending SMS messages with Azure Communication SMS Services.
  • Method Details

    • send

      public SmsSendResult send(String from, String to, String message)
      Sends an SMS message from a phone number that belongs to the authenticated account.
      Parameters:
      from - Number that is sending the message.
      to - The recipient's phone number.
      message - message to send to recipient.
      Returns:
      response for a successful send Sms request.
    • send

      public SmsSendResult send(String from, String to, String message, SmsSendOptions options)
      Sends an SMS message from a phone number that belongs to the authenticated account.
      Parameters:
      from - Number that is sending the message.
      to - The recipient's phone number.
      message - message to send to recipient.
      options - set options on the SMS request, like enable delivery report, which sends a report for this message to the Azure Resource Event Grid.
      Returns:
      The Sms send result.
    • send

      public Iterable<SmsSendResult> send(String from, Iterable<String> to, String message)
      Sends an SMS message from a phone number that belongs to the authenticated account.
      Parameters:
      from - Number that is sending the message.
      to - A list of the recipient's phone numbers.
      message - message to send to recipient.
      Returns:
      response for a successful send Sms request.
    • sendWithResponse

      public Response<Iterable<SmsSendResult>> sendWithResponse(String from, Iterable<String> to, String message, SmsSendOptions options, Context context)
      Sends an SMS message from a phone number that belongs to the authenticated account.
      Parameters:
      from - Number that is sending the message.
      to - A list of the recipient's phone numbers.
      message - message to send to recipient.
      options - set options on the SMS request, like enable delivery report, which sends a report for this message to the Azure Resource Event Grid.
      context - A Context representing the request context
      Returns:
      response for a successful send Sms request.