Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Sending HTML/PHP Form Data in mail with Attachment using PHPmailer in PHP

    • 0
    • 0
    • 0
    • 0
    • 12
    • 0
    • 0
    • 0
    • 7.11k
    Comment on it

    Hello Reader's!,If you want to send HTML/PHP form data with attachment through mail Then PHPMailer the best option for you.

    PHPMailer is one of the popular email-generating and sending libraries in the world  thou currently many popular PHP develepoment frameworks uses PHPMailer.
    A PHP email creation and transport class featuring file attachments, SMTP servers, CCs, BCCs, HTML messages, word wrap, and more. Sends email via sendmail, PHP mail(), QMail, or with SMTP.

    So lets Start ,

    First you need to download PHPMailer Click here for download or download zip file Below
    after downloading PHPmailer zip file, Now extract the file and keep this extracted file in Your Project Folder

    if you done this work nicely then create the file inside the directory

    1. Your Project Folder
    2.         -PHPMailer folder
    3.         -index.php //Containing your HTML Form field
    4.         -apply.php //sending mail file

    Create your index.php file inside your directory

    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. </head>
    5. <body>
    6. <form name="form" action="apply.php" enctype="multipart/form-data" method="POST">
    7.     <table >
    8.     <tr>
    9.         <td><b>Candidate Name<i style="color: red; background-color: #; font-size: 20px;">*</i></b></td>
    10.         <td><input type="text" name="c_name" placeholder="Candidate Name" required/></td>
    11.     </tr>
    12.     <tr>
    13.         <td><b>E-mail ID <i style="color: red; background-color: #; font-size: 20px;">*</i></b></td>
    14.         <td><input type="email" name="email_id" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,3}$" placeholder="E-mail ID" required/></td>
    15.     </tr>
    16.     <tr>
    17.         <td><b>Mobile Number<i style="color: red; background-color: #; font-size: 20px;">*</i></b></td>
    18.         <td><input type="text" name="mob_number" placeholder="Mobile Number" required/></td>
    19.     </tr>
    20.         <tr>                                                                                                                                    
    21.     <td><b>Attach Your CV <i style="color: red; background-color: #; font-size: 20px;">*</i></b></td>
    22.     <td>
    23.         <div class="form-group">                                                
    24.         <input type="file" style="width:100%;" name="cv" id="logo" required/></br>                                            
    25.         </div>                                            
    26.     </td>
    27.     </tr>                                                                        
    28.     <tr>
    29.      <td colspan="2" style="text-align:center"><button type="submit" name="apply" >Apply Now</button></td>
    30.     </tr>
    31.     </table>                                                                        
    32. </form>
    33. </body>
    34. </html>

    after creating index.php file in  directory now need to create apply.php file in the same  directory

    1. <?php
    2. if(isset($_POST['apply']))
    3.     {
    4.     $message1="";
    5.     $c_name=$_POST['c_name']; // Contain Candidate name
    6.     $email_id =$_POST['email_id']; //Contain candidate e-mail id
    7.     $mob_number =$_POST['mob_number']; //Contain candidate mobile number
    8.                 
    9.     $message="";
    10.     $message .="    // create the sending mail design acording to u
    11.     <table width='800' border='1' cellspacing='0' cellpadding='8' bordercolor='#CCCCCC'>
    12.         <tr>
    13.          <td colspan='2' bgcolor='#CDD9F5'><strong>Candidate Details</strong></td>             
    14.         </tr>
    15.         <tr>
    16.             <td width='168' bgcolor='#FFFFEC'><strong>Candidate Name</strong></td>
    17.             <td width='290' bgcolor='#FFFFEC'>$c_name</td>
    18.         </tr>
    19.         <tr>
    20.             <td bgcolor='#FFFFDD'><strong>E-mail ID</strong></td>
    21.             <td bgcolor='#FFFFDD'>$email_id</td>
    22.         </tr>
    23.         <tr>
    24.             <td bgcolor='#FFFFDD'><strong>Mobile Number</strong></td>
    25.             <td bgcolor='#FFFFDD'>$mob_number</td>
    26.         </tr>                        
    27.      </table>";
    28.  
    29.         $subject ="Your_Mail_Subject"; //like--- Resume From Website
    30.         $headers ="";
    31.         include("PHPMailer/PHPMailerAutoload.php"); //Here magic Begen we include PHPMailer Library.
    32.         include("PHPMailer/class.phpmailer.php");
    33.         $mail = new PHPMailer;
    34.          // Enable verbose debug output
    35.         $mail->isSMTP(); // Set mailer to use SMTP
    36.         $mail->Host = 'smtp.gmail.com;'; // Specify main and backup SMTP servers
    37.         $mail->SMTPAuth = true; // Enable SMTP authentication
    38.         $mail->Username = 'Your_mail_id@gmail.com';// SMTP username
    39.         $mail->Password = 'Your_mail_Password'; // SMTP password
    40.         $mail->SMTPSecure = 'tls';// Enable TLS encryption, `ssl` also accepted
    41.         $mail->Port = 587;
    42.         $mail->SMTPDebug = 0; // TCP port to connect to
    43.  
    44.         $mail->setFrom('Your_Mail_ID@gmail.com', 'Your_From_Message'); //You Can add your own From mail
    45.         $mail->addAddress('recipient@domain.com'); // Add a recipient id where you want to send mail
    46.             
    47.         $mail->addAttachment($_FILES['cv']['tmp_name'],$_FILES['cv']['name']); //This line Use to Keep User Txt,Doc,pdf file ,attachment
    48.  
    49.         $mail->addReplyTo('$email'); //where you want reply from user
    50.         $mail->isHTML(true);
    51.         $mail->Subject=''.$subject;
    52.         $mail->Body=''.$message;
    53.  
    54.         if(!$mail->send())
    55.             {                            
    56.             echo "<script type='text/javascript'>alert('Error in Form :- $mail->ErrorInfo!. We will Fix This soon');document.location.href='index.php';</script>";
    57.             }
    58.         else
    59.             {            
    60.             echo "<script language='javascript'>alert('Your Resume Submitted Successfully!. We will contact you soon ');document.location.href='index.php';</script>";                
    61.             }
    62.                 
    63.             }
    64.             else
    65.             {
    66.  
    67.             $message1.= "Code Error";
    68.                 
    69.             }
    70. ?>

     

    After done this now open your browser and access your project

    http://localhost/your_project_name

     

    Hope this will be helpful for you!!! Contact me if you facing any problem in this :)

 12 Comment(s)

  • Warning: include(PHPMailer/PHPMailerAutoload.php): failed to open stream: No such file or directory in C:\xampp\htdocs\email\apply.php on line 30

    Warning: include(): Failed opening 'PHPMailer/PHPMailerAutoload.php' for inclusion (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\email\apply.php on line 30

    Warning: include(PHPMailer/class.phpmailer.php): failed to open stream: No such file or directory in C:\xampp\htdocs\email\apply.php on line 31

    Warning: include(): Failed opening 'PHPMailer/class.phpmailer.php' f
  • Hello sir one error is occur while running localhost says Error in form:-SMTP connect() failed.http://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting!.We will fix this soon.

    how can solve this problem sir please help

  • Hello sir one error is occur while running localhost says Error in form:-SMTP connect() failed.http://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting!.We will fix this soon.

    how can solve this problem sir please help

  • Hello Peter,

    Hope you are doing good!!

    Actually, First you need to download PHPMailer after downloading PHPmailer zip file, Now extract the file and keep this extracted file in Your Project Folder

    Like:

    Your Project Folder
        -PHPMailer folder
        -apply.php
        -index.php

    Click on below link for download

    https://github.com/PHPMailer/PHPMailer

    @peterkachazi
  • ramgupta1368@gmail.com

    Configure isSMTP() detail correctly.

    If you are using gmail then login with your gmail account and go to setting select Forwarding and POP/IMAP tab then enable IMAP is enabled
  • Hello,
    I uploaded on server. but its is not working. its show this error. Please reply me soon.
    Error in Form :- SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting!. We will Fix This soon
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: