Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion app/Jobs/GenerateCertificateBatchJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ class GenerateCertificateBatchJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;

public const BATCH_SIZE = 50;
public $timeout = 1200; // 20 minutes for slow PDF generation
public $tries = 1;

public const BATCH_SIZE = 5;
public const CACHE_KEY_RUNNING = 'certificate_generation_running_%s_%s';
public const CACHE_KEY_CANCELLED = 'certificate_generation_cancelled_%s_%s';
public const CACHE_TTL_SECONDS = 86400; // 24h
Expand Down
6 changes: 5 additions & 1 deletion resources/views/emails/en/notify-super-organiser.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@
Get your Certificate
@endcomponent

Thank you very much for helping us advance digital skills! We hope to work together again in the next edition of EU Code Week, which will take place from 14-27 October.<br/><br/>
Thank you very much for helping us advance digital skills! We hope to work together again in the next edition of EU Code Week, which will take place from 10-25 October.<br/><br/>

<strong>Join the EU Code Week Community</strong><br/><br/>

EU Code Week is more than a campaign. It is a grassroots movement powered by educators, volunteers, and community builders across Europe. If you are not yet part of our community and would like to join, collaborate with peers, support digital education locally, and take a more active role as a Leading Teacher or Ambassador, we warmly invite you to explore the opportunities available in your country.<br/><br/>

Apply to join EU Code Week Community: [EU Code Week - International Call for Community Members 2026](https://forms.office.com/pages/responsepage.aspx?id=18F13DIal06vkB3AGRHqbK1miPh5RLlPh6ebcWW_-7RURFVLWEtGNFlaN1RDVFhVU05ITTZCRzE4RyQlQCN0PWcu&route=shorturl)<br/><br/>

Best wishes,<br/>

Expand Down
8 changes: 7 additions & 1 deletion resources/views/emails/en/notify-winner.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@
Get your Certificate
@endcomponent

Thank you very much for helping us advance digital skills! We hope to work together again in the next edition of EU Code Week, which will take place from 14-27 October.<br/><br/>
Thank you very much for helping us advance digital skills! We hope to work together again in the next edition of EU Code Week, which will take place from 10-25 October.<br/><br/>

<strong>Join the EU Code Week Community</strong><br/><br/>

EU Code Week is more than a campaign. It is a grassroots movement powered by educators, volunteers, and community builders across Europe. If you are not yet part of our community and would like to join, collaborate with peers, support digital education locally, and take a more active role as a Leading Teacher or Ambassador, we warmly invite you to explore the opportunities available in your country.<br/><br/>

Apply to join EU Code Week Community: [EU Code Week - International Call for Community Members 2026](https://forms.office.com/pages/responsepage.aspx?id=18F13DIal06vkB3AGRHqbK1miPh5RLlPh6ebcWW_-7RURFVLWEtGNFlaN1RDVFhVU05ITTZCRzE4RyQlQCN0PWcu&route=shorturl)<br/><br/>

Best wishes,<br/>

Expand Down
Loading