This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class LotterySmsSender { | |
const SMS_API_URL = 'https://api.smslabs.net.pl/apiSms/sendSms'; | |
const SMS_API_APP_KEY = ''; | |
const SMS_API_SECRET_KEY = ''; | |
const SMS_MESSAGE = 'Ho, Ho, Ho! Losowanie - to sekretna wiadomosc dla: %1$s. W tym roku jestes Mikolajem dla: %2$s. Pozdrawiam - maszyna losujaca z Laponii!'; | |
private array $items; |