added month name to moon mailer

This commit is contained in:
2019-08-01 20:57:22 -05:00
parent 6e3c51cd97
commit 7698a02a31

View File

@@ -103,7 +103,7 @@ class MoonMailerCommand extends Command
//Dispatch the mail job //Dispatch the mail job
$mail = new EveMail; $mail = new EveMail;
$mail->sender = $config['primary']; $mail->sender = $config['primary'];
$mail->subject = "Warped Intentions Moon Rental Payment Due for " . $today->monthName; $mail->subject = "Warped Intentions Moon Rental Payment Due for " . $today->englishMonth;
$mail->body = $body; $mail->body = $body;
$mail->recipient = (int)$contact->Contact; $mail->recipient = (int)$contact->Contact;
$mail->recipient_type = 'character'; $mail->recipient_type = 'character';