BinarCode/laravel-mailator

Delay for scheduled emails is being miscalculated

Closed this issue · 1 comments

It appears that the delay for scheduled emails is being miscalculated due to an incorrect value of the MINUTES_IN_DAY constant.

public const MINUTES_IN_DAY = 60 * 60; should be public const MINUTES_IN_DAY = 60 * 24;
Located in class ConverterEnum