Here's a quick hack to do just this.
1. You'll need to know how to send an SMS to your phone via email. eg
[email protected] (att) or
[email protected] (t-mobile/voicestream)
2. you need to have IIS installed with SMTP service configured as a smarthost using dns
3. Add the reference to the .net mail libraries:
System.Web.Mail;
4. Copy the beepalert definitions to a pagealertdefinitions and create a new pagealert checkbox on form 3, mapping it to chkbox7 (instead of 5). You should probably add a phone/email address textbox here, but I was lazy.
Here's where you hook in and send the mail message on alert
search for:
if (matched) {
if (Settings.Instance.PrefixStars)
t = "*** " + t;
//** new code begins:
if (Settings.Instance.PageOnAlert) {
string from = "
[email protected]";
string to = "
[email protected]";
string subject = t
string body = ""
SmtpMail.SmtpServer = "localhost";
SmtpMail.Send(from, to, subject, body);
}
This should send you an SMS to your phone with the subject being the name of the mob that spawned.