FREE CONSULTATION REQUEST (click here)
Got it! Based on your request, here’s a clean **HTML consent form** with checkboxes/radio buttons. When someone selects **Yes** and submits, it will send an email notification to `reese.killpack@cruiseplanners.com`.

Since HTML alone **cannot send emails directly** (for security reasons), you will need backend support (e.g., PHP, Node.js, or a service like Formspree, Google Forms, or your CRM). I’ll provide a working example using a simple **PHP mail handler**:

---

### Frontend Form (HTML)
```html








SMS/Text Message Acceptance Form



Do you agree to receive text messages from Grandmastertravel LLC DBA Cruise Planners
sent from (210) 960-3865 or (800) 454-3044?



SMS will be used to:
- Schedule and confirm travel appointments
- Send bookings
- Share limited promotional offers
- Provide account and trip updates
- Respond to customer inquiries



Customers will receive account-related alerts and promotional messages. Message frequency may vary.
Reply STOP to unsubscribe or HELP for assistance at: reese.killpack@cruiseplanners.com






















```

---

### Backend Mail Script (`send_sms_consent.php`)

```php
if ($_SERVER["REQUEST_METHOD"] === "POST") {
$consent = $_POST['consent'];
$name = $_POST['name'];
$email = $_POST['email'];

$to = "reese.killpack@cruiseplanners.com";
$subject = "SMS/Text Consent Form Response";

$message = "SMS Consent Form Submission:\n";
$message .= "Name: " . htmlspecialchars($name) . "\n";
$message .= "Email: " . htmlspecialchars($email) . "\n";
$message .= "Consent: " . htmlspecialchars($consent) . "\n";

$headers = "From: noreply@yourdomain.com
";
$headers .= "Reply-To: " . $email . "
";

// Only send email if they selected "Yes"
if ($consent === "Yes") {
if (mail($to, $subject, $message, $headers)) {
echo "Thank you. Your consent has been recorded.";
} else {
echo "Error: Unable to send email.";
}
} else {
echo "You chose not to receive text messages.";
}
}
?>
```

---

✅ With this setup:
- User reads and selects **Yes** or **No**.
- If **Yes**, an email is sent to `reese.killpack@cruiseplanners.com`.
- If **No**, a confirmation message is displayed but no email is sent.

---

Would you like me to also **make it work without a PHP server** (e.g., using a service like **Formspree** or **Zapier Email Webhooks**) so you can just drop it into any website and it will email you automatically?