Test Admin Notifications

Test Email & SMS Notifications

Use this form to test the admin notification system. This will simulate a form submission.

SMS Setup Instructions

To enable SMS notifications, you'll need to sign up for a Twilio account and update the credentials in the admin_notification.php file.

  1. Sign up for a Twilio account at https://www.twilio.com/try-twilio
  2. Get a Twilio phone number
  3. Find your Account SID and Auth Token in the Twilio Dashboard
  4. Update the following variables in admin_notification.php:
// Twilio configuration
$twilio_account_sid = 'YOUR_TWILIO_SID';
$twilio_auth_token = 'YOUR_TWILIO_TOKEN';
$twilio_phone_number = 'YOUR_TWILIO_PHONE'; // With country code (e.g., +15551234567)
$admin_phone_number = 'YOUR_PHONE';  // Your phone with country code (e.g., +15551234567)
            

Note: Twilio is a paid service, but they offer free trial credits. Each SMS will cost a small amount (typically $0.0075 to $0.03 per message depending on country).

Update Form Processor

Click the button below to update your submit_form.php to include admin notifications: