コード例 #1
0
ファイル: Program.cs プロジェクト: smith-neil/ITI-Examples
        /// <summary>
        /// This sends a notification via Text Message
        /// </summary>
        public static void SendSms()
        {
            var notifier = new SmsNotifier()
            {
                Message             = "Hello via Text..",
                Subject             = "Text Message",
                NotificationAddress = "2252814745"
            };

            notifier.SendNotification();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: smith-neil/ITI-Examples
        /// <summary>
        /// This sends a notification via Text Message
        /// </summary>
        public static void SendSms()
        {
            var notifier = new SmsNotifier()
            {
                Message = "Hello via Text..",
                Subject = "Text Message",
                NotificationAddress = "2252814745"
            };

            notifier.SendNotification();
        }