Jump to content

yashbhav

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Posts posted by yashbhav

  1. Hi ym_chaitu,

     

    thanks for your reply. Yes, it is open and I also checked with sending test email with normal code. But, this code not working for me. Should I try something like this with help of sessions?

     

    $email = $_SESSION["sender_email"];

    $to = "$email";

    ........

    .......

  2. Hi guys,

     

    I am using following code for sending out confirmation email after successful transaction to the user. But, I users are not getting any confirmation emails. Can somebody help me out here. May be I am doing wrong in "$to" function as $sender_email is at previous form, So how can I use Session here? If I am wrong here?

    Any someone help? Many Thanks in advance. :)

     

    $to = "$sender_email";

    $subject = "Your Transaction";

     

    $headers = "From: Company <company@abc.com>\n";

    $headers .= "Reply-To: Company <company@abc.com>\n";

    $headers .= "MIME-Version: 1.0\n";

    $headers .= "Content-Type: multipart/alternative; boundary=\"$mime_boundary\"\n";

    $message = "Dear ".$rs["sender_name"].", ".$_email_nl.$_email_nl;

    $message .= "Your paid amount ".$amount." ".$rs["currency"]." has been added to desired account.".$_email_nl.$_email_nl;

    $message .= "Regards,";

    $message .= "my company";

    mail($to, $subject, $message, $headers);

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.