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);

Recommended Answers

All 2 Replies

Can anyone help me here?

Many Thanks.

Yash

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.