-2

so I am working on a project that requires anonymous reporting via text message. Instead of the user showing their number when sending a text, they can choose to (paid option) send it with an anonymous number to the person they are trying to contact. Is there any way to accomplish this in Swift? If not, what sort of server can I set up to handle a simple send message delivery? Thanks everybody!

jscs
  • 63,694
  • 13
  • 151
  • 195
Ethan
  • 1,905
  • 2
  • 21
  • 50

1 Answers1

1

You'll need to setup an SMS gateway on a server to deliver the SMS message for you. Here's an example of one of these in Node.js. Thus, when the user wants to send the anonymous text message, you will have to send a request to your server (look into RESTful APIs if you haven't already) and the server will then have to send the message.

John Farkerson
  • 2,543
  • 2
  • 23
  • 33