Get in touch

Talk to the WealthAI Team

Questions? Ideas? Million-dollar thoughts? Hit us up. WealthAI is where future millionaires come to get answers, not just advice.

Send a message

Sorry, something went wrong. Please try again.
"; } else if (!isset($_POST["form_start"]) || time() - (int)$_POST["form_start"] < 3) { $status_html = ""; } else if (empty($name) || !filter_var($email, FILTER_VALIDATE_EMAIL) || empty($message)) { $status_html = ""; } else { // Build email $subject = "New Contact Form Submission from $name"; $body = "Name: $name\n"; $body .= "Email: $email\n\n"; $body .= "Message:\n$message\n"; $headers = "From: WealthAI \r\n"; $headers .= "Reply-To: $email\r\n"; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: text/plain; charset=UTF-8\r\n"; if (@mail($to, $subject, $body, $headers)) { $status_html = "
Thank you! Your message has been sent.
"; } else { $status_html = ""; } } } if (!empty($status_html)) { echo $status_html; } ?>