{{ $isCriticalFailure ?? false ? '๐Ÿ’ฅ' : '๐Ÿšจ' }}

{{ $isCriticalFailure ?? false ? 'CRITICAL Flow Failure' : 'Flow Execution Alert' }}

{{ $isCriticalFailure ?? false ? 'Critical system error detected in your iPaaS flow' : 'Errors detected in your iPaaS flow execution' }}

@if($recipientName)
Hello {{ $recipientName }},
@endif @if($isTestNotification ?? false)

๐Ÿงช This is a test notification to verify your email configuration is working correctly.

The data shown below is simulated for testing purposes.

@endif @if($isCriticalFailure ?? false)

โš ๏ธ CRITICAL SYSTEM FAILURE: Your iPaaS flow encountered a critical system error that prevented normal processing. This indicates a serious issue that requires immediate attention from your system administrator.

@else

We detected errors during the execution of your iPaaS flow. Please review the details below and take necessary action.

@endif
{{ $flowName }}
Flow ID: #{{ $flowId }}
@if($isCriticalFailure ?? false)
๐Ÿ’ฅ
Critical System Failure
โš ๏ธ
Processing Interrupted
๐Ÿ”ง
Admin Action Required
@else
{{ number_format($failedRecords) }}
Failed Records
{{ number_format($successfulRecords) }}
Successful Records
{{ number_format($totalRecords) }}
Total Records
@endif

Execution Details

Run ID: {{ $runId }}
Started At: {{ $startedAt }}
Completed At: {{ $completedAt }}
@if($failedRecords > 0)
Success Rate: {{ $totalRecords > 0 ? round(($successfulRecords / $totalRecords) * 100, 1) : 0 }}%
@endif

Quick Actions

@if($isTestNotification ?? false) ๐Ÿ“‹ View All Flows @else ๐Ÿ”ง Edit Flow @endif