moon mailer

This commit is contained in:
2019-05-31 22:00:23 -05:00
parent 2c8b4cafe6
commit 1cd41d9bec

View File

@@ -155,9 +155,9 @@ class MoonMailerCommand extends Command
//For each of the moons, build the System Planet and Moon.
foreach($moons as $moon) {
$temp = 'System: ' . $moon->System;
$temp .= 'Planet: ' . $moon->Planet;
$temp .= 'Moon: ' . $moon->Moon;
$temp = 'Moon: ' . $moon->System . ' - ' . $moon->Planet . ' - ' . $moon->Moon;
//$temp .= ' Planet: ' . $moon->Planet;
//$temp .= ' Moon: ' . $moon->Moon;
//Push the new string onto the array list
array_push($list, $temp);
}