Jump to content

Adding new data to the email


denial

Recommended Posts

Hi,

The code below checks the "Paid" reservations from the database and sends them as an email with a cron job.

Normally only "pay_url" data is added, yet I'd like to add "customer_name", "customer_surname" and "amount" too with pay_url.

Could you please guide me how to do it?

Thank you in advance.

<?php
include "../lib/include.php";

$yesterdayDate = date("Y-m-d 09:00:00", strtotime("-1 days"));
$query = "select * from links where status = 1 and cc_payment_id != '' and payment_date >= '".$yesterdayDate."' and payment_date <= '".date("Y-m-d 08:59:59")."'";


$q = $db->query($query);
foreach ($q AS $a) {

	$mail_content .= "".$a["pay_url"]." -> Paid<br>";
}

if ($mail_content != "") {
	SendMail($settings["system_email"],$mail_content,"Paid Reservations");
}

 

Link to comment
Share on other sites

OK. Thank you so much. I'm not looking for something fancy thb. I care more about whether it will work.

One last thing.. Could you please tell me what is the difference between those two lines? dots vs curly braces

$mail_content .= "".$a['pay_url']. - .$a['customer_name']. - .$a['customer_surname']. - .$a['amount']." -> Paid <br>";

 

$mail_content .= "{$a['pay_url']} - {$a['customer_name']} - {$a['customer_surname']} - {$a['amount']} -> Paid <br>";

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.