Localhost And Webhosting Se Attachment Kaise Send Kare –By Using Phpmailer


send attachment with phpmailer


Localhost And Webhosting Se Attachment Kaise Send Kare –By Using Phpmailer


Hello Friends Ajj Me Apko Btaunga Ki Kis Parkar Ham Php Mailer Ka Use Karke User Ki Email Id Par Attachment Send Kar Sakte Hai.Apne Kai Website Par Ye Feature Dekha Hoga Ki Wanha Ek Textbox Ka Option Hota Hai Jb Ham Textbox Me Apne Email Id Enter Karke Submit Karte Hai T Us Website Ke Dwara Automatic He Download Link,Attachment,Pdf File Hmare Email Id Par A Jati Hai.Ye Ek Bhut Acha Feature Hai .Aap Be Iska Use Apne Website Me Kar Sakte Ho.Hm Mail Ko 2 Type Se Send Kar Sakte Hai Ek To Mail Function And Dusra Phpmailer ,Ajj Me Apko Phpmailer Ke Bare Me Btaunga Kiunki Iska Use Karke Aap Localhost Se Be Attachment And Email Send Kar Sakte Ho.


Demo Link

Send Email With Phpmailer


Sabse Pehle app Github se PHPMailr Library Download Kar lijiye


Download PHPMailer Library


Steps for send mail with attachment(phpmailer)

1-ek index.php name ki file bana lijiye.

Index.php





<?php

  if(isset($_REQUEST['send']))

      {



$email=$_POST['email'] ;



require 'PHPMailer-master/PHPMailerAutoload.php';



$mail = new PHPMailer();



  //Enable SMTP debugging.

  $mail->SMTPDebug = 0;

  //Set PHPMailer to use SMTP.

  $mail->isSMTP();

  //Set SMTP host name

  $mail->Host = "smtp.gmail.com";

  $mail->SMTPOptions = array(

                    'ssl' => array(

                        'verify_peer' => false,

                        'verify_peer_name' => false,

                        'allow_self_signed' => true

                    )

                );

  //Set this to true if SMTP host requires authentication to send email

  $mail->SMTPAuth = TRUE;

  //Provide username and password

  $mail->Username = Yourgmailidhere";//enter your gmail id here

  $mail->Password = "yourgmailpasswordhere";/enter your gmail password here

  //If SMTP requires TLS encryption then set it

  $mail->SMTPSecure = "false";

  $mail->Port = 587;

  //Set TCP port to connect to



  $mail->From = "kashyapbhupender122@gmail.com";

  $mail->FromName = "jignesh";



  $mail->addAddress($_POST["email"]);



  $mail->isHTML(true);

$mail->addAttachment('sonu.txt'); //set new name





  $mail->Subject = "test mail";

  $mail->Body = "this is your attachment";

  $mail->AltBody = "This is the plain text version of the email content";

  if(!$mail->send())

  {

   echo "Mailer Error: " . $mail->ErrorInfo;

  }

  else

  {

   echo "<h1>Message has been sent successfully</h1>";

  }



  }

  ?>







  <html>

<head>

      <title>send mail using phpmailer in php</title>

</head>

<body>

<h1>Send attachment To Email Id </h1>

  

      <form action="" method="POST">



      <label for="email">Email:</label>

      <h1><input type="email"  name="email"></h1>

      </div>



      <button type="submit" name="send" >Send Mail</button>

      </form>

      </div>

      

</body>

</html>



Is parkar aap easily phpmailer ka use karke attachement send kar sakte hai





Multiple attachement Kaise Send Kare/multiple files ek sath kaise Bheje


$mail->addAttachment('sonu.txt'); //set new name

$mail->addAttachment('kunal.txt'); //set new name

$mail->addAttachment('rahul.txt'); //set new name

$mail->addAttachment('gajabwap.txt'); //set new name


Janha Apne Ek Attachment Add Ki The Wanha Aap Jitney Be Attachemtn Bhejna Chahte Hai Sabko Add Kar Sakte Ho Inka Procedure Same Hai.

Is Parkar Aap Easily Multiple Files Send Kar Sakte Ho.

Note-Jin Files Ko Aap Send Karna Chahte Ho Unhe Us Folder Me Rakhe Janha Apki Ye Index.Php File Ho .
Thank You

Team Gajabwap Web In Hindi


Previous
Next Post »

2 comments

Click here for comments
ssss123456
admin
16 June 2018 at 08:14 ×

nice information bro please php curl par post likhe

Reply
avatar
gajabwap
admin
17 June 2018 at 08:40 ×

Thanks bro comment karne ke liye Me jaldi He curl ke upper ek tutorials bnane wala hu aap Blog par bane rahe

Reply
avatar
Thanks for your comment