coravel icon indicating copy to clipboard operation
coravel copied to clipboard

Near-zero config .NET library that makes advanced application features like Task Scheduling, Caching, Queuing, Event Broadcasting, and more a breeze!

Results 93 coravel issues
Sort by recently updated
recently updated
newest added

**Describe the solution you'd like** Calling `.From("[email protected]")` in `Build()` doesn't seem to override the globalFrom address. As discussed in #320 it's better if calling `.From()` would override the globalFrom mailbox....

**Describe the solution you'd like** The documentation (great as it is) is missing details about the usage of `globalFrom` in service registration which would've sped up development for my use...

```c# [AttributeUsage(AttributeTargets.Class)] public class CoravelJobAttrbutes : Attribute { [Required] public string Cron { get; } public CoravelJobAttrbutes(string cron) { var values = cron.Split(' '); if (values.Length != 5) { throw...

**Describe the solution you'd like** I’m using a long running task(ffmpeg) that raises progress events(read stderr and parse output). These events are transformed to an ef core entity and saved...

It'd be helpful if when the job is executed it could tell when the next execution might be. Is it possible to do it with the current framework? I'm trying...

I would like to run the task on the last day of the month or more specifically on the last working day of the month at 6pm. This would work...

Worker Service with Scheduler doesn't execute IInvocable using EveryMinute().WeekDay() on a Friday. Coravel Version 5.0.2 Sample program: host.Services.UseScheduler(scheduler => { scheduler.Schedule() .EveryMinute(); .Weekday(); }); If I take out the .WeekDay()...

Consolidated target frameworks for libraries and referenced local projects over public packages. Added a `Sender(...)` method to be able to set the Sender property of the MailMessage. #374 Have From()...

**Affected Coravel Feature** Events boradcasting and Events handling **Describe the bug** I have experimented with Events broadcasting and created a listener class to handle both the queue events: ``` internal...