private function sendPayDayReminder() {
		if ($this->shouldSendMonthly($this->accountSettings->get(Pap_Settings::NOTIFICATION_PAY_DAY_REMINDER_DAY_OF_MONTH))) {
			$monthlyReport = new Pap_Mail_PayDayReminder_PayDayReminder();
			$monthlyReport->addRecipient($this->accountSettings->get(Pap_Settings::MERCHANT_NOTIFICATION_EMAIL));
			$monthlyReport->sendNow();
			$this->saveLastSendDate();
		}
	}