@gravito/signal 3.0.3 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +99 -59
  3. package/README.zh-TW.md +140 -9
  4. package/build.ts +133 -0
  5. package/dist/Mailable.d.ts +453 -0
  6. package/dist/OrbitSignal.d.ts +267 -0
  7. package/dist/Queueable.d.ts +9 -0
  8. package/dist/TypedMailable.d.ts +95 -0
  9. package/dist/dev/DevMailbox.d.ts +79 -0
  10. package/dist/dev/DevServer.d.ts +39 -0
  11. package/dist/dev/storage/FileMailboxStorage.d.ts +16 -0
  12. package/dist/dev/storage/MailboxStorage.d.ts +14 -0
  13. package/dist/dev/storage/MemoryMailboxStorage.d.ts +13 -0
  14. package/dist/dev/ui/mailbox.d.ts +11 -0
  15. package/dist/dev/ui/preview.d.ts +11 -0
  16. package/dist/dev/ui/shared.d.ts +15 -0
  17. package/dist/errors.d.ts +58 -0
  18. package/dist/events.d.ts +63 -0
  19. package/dist/index.cjs +88291 -0
  20. package/dist/index.cjs.map +712 -0
  21. package/dist/index.d.ts +31 -643
  22. package/dist/index.mjs +87748 -335
  23. package/dist/index.mjs.map +710 -0
  24. package/dist/renderers/HtmlRenderer.d.ts +34 -0
  25. package/dist/renderers/MjmlRenderer.d.ts +41 -0
  26. package/dist/renderers/ReactMjmlRenderer.d.ts +38 -0
  27. package/dist/renderers/ReactRenderer.d.ts +46 -0
  28. package/dist/renderers/Renderer.d.ts +66 -0
  29. package/dist/renderers/TemplateRenderer.d.ts +55 -0
  30. package/dist/renderers/VueMjmlRenderer.d.ts +39 -0
  31. package/dist/renderers/VueRenderer.d.ts +47 -0
  32. package/dist/renderers/mjml-templates.d.ts +11 -0
  33. package/dist/transports/BaseTransport.d.ts +111 -0
  34. package/dist/transports/LogTransport.d.ts +42 -0
  35. package/dist/transports/MemoryTransport.d.ts +51 -0
  36. package/dist/transports/SesTransport.d.ts +79 -0
  37. package/dist/transports/SmtpTransport.d.ts +124 -0
  38. package/dist/transports/Transport.d.ts +44 -0
  39. package/dist/types.d.ts +294 -0
  40. package/dist/utils/html.d.ts +29 -0
  41. package/dist/webhooks/SendGridWebhookDriver.d.ts +45 -0
  42. package/dist/webhooks/SesWebhookDriver.d.ts +23 -0
  43. package/doc/ADVANCED_RENDERING.md +71 -0
  44. package/doc/DISTRIBUTED_MESSAGING.md +79 -0
  45. package/doc/OPTIMIZATION_PLAN.md +496 -0
  46. package/package.json +14 -11
  47. package/package.json.bak +75 -0
  48. package/scripts/check-coverage.ts +64 -0
  49. package/src/Mailable.ts +340 -44
  50. package/src/OrbitSignal.ts +350 -50
  51. package/src/TypedMailable.ts +96 -0
  52. package/src/dev/DevMailbox.ts +89 -33
  53. package/src/dev/DevServer.ts +14 -14
  54. package/src/dev/storage/FileMailboxStorage.ts +66 -0
  55. package/src/dev/storage/MailboxStorage.ts +15 -0
  56. package/src/dev/storage/MemoryMailboxStorage.ts +36 -0
  57. package/src/dev/ui/mailbox.ts +1 -1
  58. package/src/dev/ui/preview.ts +4 -4
  59. package/src/errors.ts +69 -0
  60. package/src/events.ts +72 -0
  61. package/src/index.ts +20 -1
  62. package/src/renderers/HtmlRenderer.ts +20 -18
  63. package/src/renderers/MjmlRenderer.ts +73 -0
  64. package/src/renderers/ReactMjmlRenderer.ts +94 -0
  65. package/src/renderers/ReactRenderer.ts +26 -21
  66. package/src/renderers/Renderer.ts +43 -3
  67. package/src/renderers/TemplateRenderer.ts +48 -15
  68. package/src/renderers/VueMjmlRenderer.ts +99 -0
  69. package/src/renderers/VueRenderer.ts +26 -21
  70. package/src/renderers/mjml-templates.ts +50 -0
  71. package/src/transports/BaseTransport.ts +148 -0
  72. package/src/transports/LogTransport.ts +28 -6
  73. package/src/transports/MemoryTransport.ts +34 -6
  74. package/src/transports/SesTransport.ts +62 -17
  75. package/src/transports/SmtpTransport.ts +123 -27
  76. package/src/transports/Transport.ts +33 -4
  77. package/src/types.ts +172 -3
  78. package/src/utils/html.ts +43 -0
  79. package/src/webhooks/SendGridWebhookDriver.ts +80 -0
  80. package/src/webhooks/SesWebhookDriver.ts +44 -0
  81. package/tests/DevMailbox.test.ts +54 -0
  82. package/tests/FileMailboxStorage.test.ts +56 -0
  83. package/tests/MjmlLayout.test.ts +28 -0
  84. package/tests/MjmlRenderer.test.ts +53 -0
  85. package/tests/OrbitSignalWebhook.test.ts +56 -0
  86. package/tests/ReactMjmlRenderer.test.ts +33 -0
  87. package/tests/SendGridWebhookDriver.test.ts +69 -0
  88. package/tests/SesWebhookDriver.test.ts +46 -0
  89. package/tests/VueMjmlRenderer.test.ts +35 -0
  90. package/tests/dev-server.test.ts +1 -1
  91. package/tests/transports.test.ts +3 -3
  92. package/tsconfig.build.json +24 -0
  93. package/tsconfig.json +8 -25
  94. package/dist/OrbitMail-2Z7ZTKYA.mjs +0 -7
  95. package/dist/OrbitMail-BGV32HWN.mjs +0 -7
  96. package/dist/OrbitMail-FUYZQSAV.mjs +0 -7
  97. package/dist/OrbitMail-NAPCRK7B.mjs +0 -7
  98. package/dist/OrbitMail-REGJ276B.mjs +0 -7
  99. package/dist/OrbitMail-TCFBJWDT.mjs +0 -7
  100. package/dist/OrbitMail-XZZW6U4N.mjs +0 -7
  101. package/dist/OrbitSignal-IPSA2CDO.mjs +0 -7
  102. package/dist/OrbitSignal-MABW4DDW.mjs +0 -7
  103. package/dist/OrbitSignal-QSW5VQ5M.mjs +0 -7
  104. package/dist/OrbitSignal-R22QHWAA.mjs +0 -7
  105. package/dist/OrbitSignal-ZKKMEC27.mjs +0 -7
  106. package/dist/ReactRenderer-24SQ4KRU.mjs +0 -27
  107. package/dist/ReactRenderer-CMCAOEPH.mjs +0 -28
  108. package/dist/ReactRenderer-KYNA4WKE.mjs +0 -28
  109. package/dist/ReactRenderer-L5INVYKT.mjs +0 -27
  110. package/dist/VueRenderer-DWTCD2RF.mjs +0 -31
  111. package/dist/VueRenderer-IIR5SYTM.mjs +0 -31
  112. package/dist/VueRenderer-S65ZARRI.mjs +0 -37129
  113. package/dist/VueRenderer-SUP66ISX.mjs +0 -29
  114. package/dist/VueRenderer-Z5PRVBNH.mjs +0 -37298
  115. package/dist/chunk-3U2CYJO5.mjs +0 -367
  116. package/dist/chunk-3XFC4T6M.mjs +0 -392
  117. package/dist/chunk-456QRYFW.mjs +0 -401
  118. package/dist/chunk-6DZX6EAA.mjs +0 -37
  119. package/dist/chunk-DT3R2TNV.mjs +0 -367
  120. package/dist/chunk-EBO3CZXG.mjs +0 -15
  121. package/dist/chunk-F6MVTUCT.mjs +0 -421
  122. package/dist/chunk-GADWIVC4.mjs +0 -400
  123. package/dist/chunk-HHKFAMSE.mjs +0 -380
  124. package/dist/chunk-NEQCQSZI.mjs +0 -406
  125. package/dist/chunk-OKRNL6PN.mjs +0 -400
  126. package/dist/chunk-ULN3GMY2.mjs +0 -367
  127. package/dist/chunk-XAWO7RSP.mjs +0 -398
  128. package/dist/chunk-YLVDJSED.mjs +0 -431
  129. package/dist/index.d.mts +0 -644
  130. package/dist/index.js +0 -38251
  131. package/dist/server-renderer-4W4FI7YG.mjs +0 -37269
@@ -0,0 +1,124 @@
1
+ import type { Message } from '../types';
2
+ import { BaseTransport, type TransportOptions } from './BaseTransport';
3
+ /**
4
+ * Configuration for SMTP email transport.
5
+ *
6
+ * Defines the connection parameters, authentication, and pooling settings for
7
+ * communicating with an SMTP server.
8
+ *
9
+ * @example
10
+ * ```typescript
11
+ * const config: SmtpConfig = {
12
+ * host: 'smtp.mailtrap.io',
13
+ * port: 2525,
14
+ * auth: { user: 'username', pass: 'password' },
15
+ * poolSize: 10
16
+ * };
17
+ * ```
18
+ *
19
+ * @public
20
+ */
21
+ export interface SmtpConfig extends TransportOptions {
22
+ /** SMTP server hostname or IP address. */
23
+ host: string;
24
+ /** SMTP server port (typically 25, 465, or 587). */
25
+ port: number;
26
+ /** Whether to use a secure TLS/SSL connection. Should be true for port 465. */
27
+ secure?: boolean;
28
+ /** Authentication credentials for the SMTP server. */
29
+ auth?: {
30
+ /** SMTP username. */
31
+ user: string;
32
+ /** SMTP password. */
33
+ pass: string;
34
+ };
35
+ /** TLS specific options for the connection. */
36
+ tls?: {
37
+ /** Whether to reject unauthorized certificates (useful for self-signed certs). */
38
+ rejectUnauthorized?: boolean;
39
+ /** Specific cipher suite to use for the connection. */
40
+ ciphers?: string;
41
+ };
42
+ /** Number of concurrent connections to maintain in the pool. */
43
+ poolSize?: number;
44
+ /** Maximum time in milliseconds a connection can remain idle before being closed. */
45
+ maxIdleTime?: number;
46
+ }
47
+ /**
48
+ * SMTP email transport with connection pooling and automatic retry.
49
+ *
50
+ * This transport uses the standard SMTP protocol to deliver emails. It leverages
51
+ * `nodemailer` for robust protocol implementation and includes built-in support
52
+ * for connection pooling to improve performance when sending multiple emails.
53
+ * It inherits automatic retry logic from `BaseTransport`.
54
+ *
55
+ * @example
56
+ * ```typescript
57
+ * import { SmtpTransport } from '@gravito/signal';
58
+ *
59
+ * const transport = new SmtpTransport({
60
+ * host: 'smtp.example.com',
61
+ * port: 587,
62
+ * auth: { user: 'user', pass: 'pass' }
63
+ * });
64
+ *
65
+ * await transport.send(message);
66
+ * ```
67
+ *
68
+ * @public
69
+ */
70
+ export declare class SmtpTransport extends BaseTransport {
71
+ private transporter;
72
+ /**
73
+ * Initializes the SMTP transport with the provided configuration.
74
+ *
75
+ * Sets up the underlying nodemailer transporter with connection pooling enabled.
76
+ *
77
+ * @param config - SMTP connection and retry configuration.
78
+ */
79
+ constructor(config: SmtpConfig);
80
+ /**
81
+ * Internal method to perform the actual SMTP delivery.
82
+ *
83
+ * Maps the generic `Message` object to the format expected by nodemailer.
84
+ *
85
+ * @param message - The message to deliver.
86
+ * @returns A promise that resolves when the SMTP server accepts the message.
87
+ * @throws {Error} If the SMTP server rejects the message or connection fails.
88
+ */
89
+ protected doSend(message: Message): Promise<void>;
90
+ /**
91
+ * Gracefully shuts down the transport and closes all pooled connections.
92
+ *
93
+ * This should be called during application shutdown to ensure no resources are leaked.
94
+ *
95
+ * @returns A promise that resolves when all connections are closed.
96
+ *
97
+ * @example
98
+ * ```typescript
99
+ * await transport.close();
100
+ * ```
101
+ */
102
+ close(): Promise<void>;
103
+ /**
104
+ * Verifies the SMTP connection and authentication.
105
+ *
106
+ * Useful for health checks or validating configuration during startup.
107
+ *
108
+ * @returns A promise that resolves to true if the connection is valid, false otherwise.
109
+ *
110
+ * @example
111
+ * ```typescript
112
+ * const isValid = await transport.verify();
113
+ * if (!isValid) throw new Error('SMTP configuration is invalid');
114
+ * ```
115
+ */
116
+ verify(): Promise<boolean>;
117
+ /**
118
+ * Formats an Address object into a standard RFC 822 string.
119
+ *
120
+ * @param addr - The address object to format.
121
+ * @returns A string in the format "Name <email@example.com>" or just "email@example.com".
122
+ */
123
+ private formatAddress;
124
+ }
@@ -0,0 +1,44 @@
1
+ import type { Message } from '../types';
2
+ /**
3
+ * Interface for email transport mechanisms.
4
+ *
5
+ * Transports are responsible for the final delivery of an email message to its destination,
6
+ * whether it's a real SMTP server, a cloud service like AWS SES, or a local log for development.
7
+ * This abstraction allows the core mail service to remain agnostic of the delivery method.
8
+ *
9
+ * @example
10
+ * ```typescript
11
+ * class CustomTransport implements Transport {
12
+ * async send(message: Message): Promise<void> {
13
+ * // Implementation logic to deliver the message
14
+ * console.log(`Sending email to ${message.to[0].address}`);
15
+ * }
16
+ * }
17
+ * ```
18
+ *
19
+ * @public
20
+ */
21
+ export interface Transport {
22
+ /**
23
+ * Send the given message using the underlying transport mechanism.
24
+ *
25
+ * This method handles the actual communication with the delivery service.
26
+ * Implementations should handle connection management and protocol-specific logic.
27
+ *
28
+ * @param message - The finalized message object containing recipients, subject, and content.
29
+ * @returns A promise that resolves when the message has been successfully handed off to the transport.
30
+ * @throws {MailTransportError} If the delivery fails after all internal retry attempts.
31
+ *
32
+ * @example
33
+ * ```typescript
34
+ * const transport: Transport = new LogTransport();
35
+ * await transport.send({
36
+ * from: { address: 'sender@example.com' },
37
+ * to: [{ address: 'receiver@example.com' }],
38
+ * subject: 'Hello',
39
+ * html: '<p>World</p>'
40
+ * });
41
+ * ```
42
+ */
43
+ send(message: Message): Promise<void>;
44
+ }
@@ -0,0 +1,294 @@
1
+ import type { GravitoContext } from '@gravito/core';
2
+ import type { Transport } from './transports/Transport';
3
+ /**
4
+ * Interface for Webhook Drivers.
5
+ */
6
+ export interface WebhookDriver {
7
+ handle(c: GravitoContext): Promise<{
8
+ event: string;
9
+ payload: any;
10
+ }[] | null>;
11
+ }
12
+ /**
13
+ * Transport interface for sending email messages.
14
+ *
15
+ * Defines the contract for different delivery mechanisms (SMTP, SES, etc.).
16
+ */
17
+ export type { Transport };
18
+ /**
19
+ * Representation of an email address with optional display name.
20
+ *
21
+ * Defines the structure for email addresses used throughout the mail system.
22
+ * Supports both simple string addresses and formatted addresses with display names.
23
+ *
24
+ * @example
25
+ * ```typescript
26
+ * // Simple address
27
+ * const addr1: Address = { address: 'user@example.com' }
28
+ *
29
+ * // Address with display name
30
+ * const addr2: Address = {
31
+ * name: 'John Doe',
32
+ * address: 'john@example.com'
33
+ * }
34
+ * ```
35
+ *
36
+ * @see {@link Envelope} For the email envelope structure
37
+ * @see {@link Message} For the complete message structure
38
+ *
39
+ * @public
40
+ * @since 3.0.0
41
+ */
42
+ export interface Address {
43
+ /** The display name of the recipient/sender, e.g., "John Doe". */
44
+ name?: string;
45
+ /** The actual email address string. */
46
+ address: string;
47
+ }
48
+ /**
49
+ * Configuration for an email attachment.
50
+ *
51
+ * Defines file attachments for email messages. Supports both regular attachments
52
+ * and inline attachments (e.g., embedded images referenced via Content-ID).
53
+ *
54
+ * @example
55
+ * ```typescript
56
+ * // Regular file attachment
57
+ * const attachment: Attachment = {
58
+ * filename: 'document.pdf',
59
+ * content: Buffer.from('...'),
60
+ * contentType: 'application/pdf'
61
+ * }
62
+ *
63
+ * // Inline image attachment
64
+ * const inlineImage: Attachment = {
65
+ * filename: 'logo.png',
66
+ * content: Buffer.from('...'),
67
+ * contentType: 'image/png',
68
+ * cid: 'logo@example.com' // Reference in HTML: <img src="cid:logo@example.com">
69
+ * }
70
+ * ```
71
+ *
72
+ * @see {@link Envelope} For adding attachments to emails
73
+ *
74
+ * @public
75
+ * @since 3.0.0
76
+ */
77
+ export interface Attachment {
78
+ /** The filename of the attachment. */
79
+ filename: string;
80
+ /** The content of the attachment as a string or Buffer. */
81
+ content: string | Buffer;
82
+ /** Optional MIME type of the content. */
83
+ contentType?: string;
84
+ /** Optional Content-ID for referencing within HTML content (inline images). */
85
+ cid?: string;
86
+ /** Optional content encoding. */
87
+ encoding?: string;
88
+ }
89
+ /**
90
+ * The envelope containing metadata for an email message.
91
+ *
92
+ * Used during the construction phase of a Mailable. All fields are optional
93
+ * at this stage and will be validated when converting to a Message.
94
+ *
95
+ * @example
96
+ * ```typescript
97
+ * const envelope: Envelope = {
98
+ * from: { name: 'App', address: 'noreply@app.com' },
99
+ * to: [{ address: 'user@example.com' }],
100
+ * subject: 'Welcome!',
101
+ * priority: 'high',
102
+ * replyTo: { address: 'support@app.com' }
103
+ * }
104
+ * ```
105
+ *
106
+ * @see {@link Mailable} For building envelopes fluently
107
+ * @see {@link Message} For the validated, finalized message structure
108
+ *
109
+ * @public
110
+ * @since 3.0.0
111
+ */
112
+ export interface Envelope {
113
+ /** The sender's address. */
114
+ from?: Address | undefined;
115
+ /** Primary recipients. */
116
+ to?: Address[] | undefined;
117
+ /** Carbon copy recipients. */
118
+ cc?: Address[] | undefined;
119
+ /** Blind carbon copy recipients. */
120
+ bcc?: Address[] | undefined;
121
+ /** Reply-to address. */
122
+ replyTo?: Address | undefined;
123
+ /** Email subject line. */
124
+ subject?: string | undefined;
125
+ /** Importance level of the email. */
126
+ priority?: 'high' | 'normal' | 'low' | undefined;
127
+ /** List of file attachments. */
128
+ attachments?: Attachment[] | undefined;
129
+ }
130
+ /**
131
+ * A fully finalized email message ready to be sent by a transport.
132
+ *
133
+ * Requires mandatory fields that were optional in the Envelope.
134
+ * This structure is passed to Transport implementations for actual delivery.
135
+ *
136
+ * @example
137
+ * ```typescript
138
+ * const message: Message = {
139
+ * from: { name: 'App', address: 'noreply@app.com' },
140
+ * to: [{ address: 'user@example.com' }],
141
+ * subject: 'Welcome to our service',
142
+ * html: '<h1>Welcome!</h1><p>Thanks for joining.</p>',
143
+ * text: 'Welcome! Thanks for joining.',
144
+ * priority: 'normal',
145
+ * headers: { 'X-Custom-Header': 'value' }
146
+ * }
147
+ * ```
148
+ *
149
+ * @see {@link Envelope} For the construction phase structure
150
+ * @see {@link Transport} For implementations that send messages
151
+ *
152
+ * @public
153
+ * @since 3.0.0
154
+ */
155
+ export interface Message extends Envelope {
156
+ /** The mandatory sender's address. */
157
+ from: Address;
158
+ /** At least one recipient is required. */
159
+ to: Address[];
160
+ /** Mandatory subject. */
161
+ subject: string;
162
+ /** The rendered HTML body content. */
163
+ html: string;
164
+ /** Optional rendered plain text body content. */
165
+ text?: string;
166
+ /** Custom SMTP headers. */
167
+ headers?: Record<string, string>;
168
+ }
169
+ /**
170
+ * Global configuration options for OrbitSignal and Mailable instances.
171
+ *
172
+ * Configures the mail service behavior, transport mechanism, development tools,
173
+ * and internationalization support.
174
+ *
175
+ * @example
176
+ * ```typescript
177
+ * import { OrbitSignal, SmtpTransport } from '@gravito/signal'
178
+ *
179
+ * const config: MailConfig = {
180
+ * from: { name: 'My App', address: 'noreply@myapp.com' },
181
+ * transport: new SmtpTransport({
182
+ * host: 'smtp.mailtrap.io',
183
+ * port: 2525,
184
+ * auth: { user: 'user', pass: 'pass' }
185
+ * }),
186
+ * devMode: process.env.NODE_ENV === 'development',
187
+ * viewsDir: './src/emails',
188
+ * devUiPrefix: '/__mail',
189
+ * translator: (key, replace, locale) => i18n.t(key, { ...replace, locale })
190
+ * }
191
+ *
192
+ * const mail = new OrbitSignal(config)
193
+ * ```
194
+ *
195
+ * @see {@link OrbitSignal} For the mail service implementation
196
+ * @see {@link Transport} For available transport options
197
+ *
198
+ * @public
199
+ * @since 3.0.0
200
+ */
201
+ export interface MailConfig {
202
+ /**
203
+ * Default sender address used if not specified in the Mailable.
204
+ *
205
+ * @example
206
+ * ```typescript
207
+ * from: { name: 'My App', address: 'noreply@myapp.com' }
208
+ * ```
209
+ */
210
+ from?: Address;
211
+ /**
212
+ * The transport mechanism used to send emails (e.g., SMTP, SES, Log).
213
+ *
214
+ * @example
215
+ * ```typescript
216
+ * import { SmtpTransport } from '@gravito/signal'
217
+ * transport: new SmtpTransport({ host: 'smtp.example.com', port: 587 })
218
+ * ```
219
+ */
220
+ transport?: Transport;
221
+ /**
222
+ * Enable development mode.
223
+ * When true, emails are intercepted by the DevMailbox instead of being sent.
224
+ *
225
+ * @default false
226
+ * @example
227
+ * ```typescript
228
+ * devMode: process.env.NODE_ENV === 'development'
229
+ * ```
230
+ */
231
+ devMode?: boolean | undefined;
232
+ /**
233
+ * Directory where email templates are located for use with OrbitPrism.
234
+ *
235
+ * @default "src/emails"
236
+ * @example
237
+ * ```typescript
238
+ * viewsDir: './resources/views/emails'
239
+ * ```
240
+ */
241
+ viewsDir?: string | undefined;
242
+ /**
243
+ * URL prefix for the Mail Dev UI.
244
+ *
245
+ * @default "/__mail"
246
+ * @example
247
+ * ```typescript
248
+ * devUiPrefix: '/dev/mailbox'
249
+ * ```
250
+ */
251
+ devUiPrefix?: string | undefined;
252
+ /**
253
+ * Whether to allow access to the Mail Dev UI in production environments.
254
+ *
255
+ * @default false
256
+ * @example
257
+ * ```typescript
258
+ * devUiAllowInProduction: process.env.ALLOW_MAIL_UI === 'true'
259
+ * ```
260
+ */
261
+ devUiAllowInProduction?: boolean | undefined;
262
+ /**
263
+ * Authorization gate for the Mail Dev UI.
264
+ * Should return true to allow access to the UI.
265
+ *
266
+ * @example
267
+ * ```typescript
268
+ * devUiGate: async (ctx) => {
269
+ * const user = await ctx.get('auth').user()
270
+ * return user?.role === 'admin'
271
+ * }
272
+ * ```
273
+ */
274
+ devUiGate?: ((ctx: GravitoContext) => boolean | Promise<boolean>) | undefined;
275
+ /**
276
+ * Translation function for internationalization within emails.
277
+ *
278
+ * @example
279
+ * ```typescript
280
+ * translator: (key, replace, locale) => {
281
+ * return i18n.t(key, { ...replace, locale: locale || 'en' })
282
+ * }
283
+ * ```
284
+ */
285
+ translator?: ((key: string, replace?: Record<string, unknown>, locale?: string) => string) | undefined;
286
+ /**
287
+ * URL prefix for Webhook endpoints.
288
+ */
289
+ webhookPrefix?: string | undefined;
290
+ /**
291
+ * Dictionary of registered webhook drivers.
292
+ */
293
+ webhookDrivers?: Record<string, WebhookDriver> | undefined;
294
+ }
@@ -0,0 +1,29 @@
1
+ /**
2
+ * HTML utility functions.
3
+ *
4
+ * Provides helper methods for processing and transforming HTML content,
5
+ * primarily for generating plain text alternatives for emails.
6
+ *
7
+ * @module utils/html
8
+ * @since 3.1.0
9
+ */
10
+ /**
11
+ * Convert HTML content to plain text.
12
+ *
13
+ * Removes all HTML tags, styles, scripts, and normalizes whitespace.
14
+ * This is essential for generating the `text` part of a multipart email
15
+ * to ensure compatibility with mail clients that do not support HTML.
16
+ *
17
+ * @param html - Source HTML string to be stripped
18
+ * @returns Plain text content with tags and entities removed
19
+ *
20
+ * @example
21
+ * ```typescript
22
+ * const text = stripHtml('<h1>Hello</h1><p>World</p>')
23
+ * // Returns: 'Hello World'
24
+ * ```
25
+ *
26
+ * @public
27
+ * @since 3.1.0
28
+ */
29
+ export declare function stripHtml(html: string): string;
@@ -0,0 +1,45 @@
1
+ import type { GravitoContext } from '@gravito/core';
2
+ import type { WebhookDriver } from '../types';
3
+ /**
4
+ * Configuration for SendGrid Webhook Driver.
5
+ */
6
+ export interface SendGridWebhookConfig {
7
+ /**
8
+ * Public key or Verification Secret for signature validation.
9
+ * If provided, all requests will be validated.
10
+ */
11
+ publicKey?: string;
12
+ }
13
+ /**
14
+ * SendGrid Webhook Driver.
15
+ *
16
+ * Handles Event Webhooks from SendGrid (delivered, bounced, opened, clicked, etc.).
17
+ *
18
+ * @see https://docs.sendgrid.com/for-developers/tracking-events/event-webhook
19
+ * @public
20
+ * @since 1.1.0
21
+ */
22
+ export declare class SendGridWebhookDriver implements WebhookDriver {
23
+ private config;
24
+ constructor(config?: SendGridWebhookConfig);
25
+ /**
26
+ * Handles the SendGrid webhook request.
27
+ */
28
+ handle(c: GravitoContext): Promise<{
29
+ event: string;
30
+ payload: any;
31
+ }[] | null>;
32
+ /**
33
+ * Verifies the SendGrid webhook signature.
34
+ *
35
+ * @param payload - Raw request body string.
36
+ * @param signature - Signature from X-Twilio-Email-Event-Webhook-Signature header.
37
+ * @param timestamp - Timestamp from X-Twilio-Email-Event-Webhook-Timestamp header.
38
+ * @returns True if signature is valid.
39
+ *
40
+ * @remarks
41
+ * Real SendGrid validation uses Elliptic Curve (ECDSA).
42
+ * This is a placeholder for the logic structure.
43
+ */
44
+ private verifySignature;
45
+ }
@@ -0,0 +1,23 @@
1
+ import type { GravitoContext } from '@gravito/core';
2
+ import type { WebhookDriver } from '../types';
3
+ /**
4
+ * AWS SES Webhook Driver.
5
+ *
6
+ * Handles SES Notifications via Amazon SNS (Complaints, Bounces, Deliveries).
7
+ *
8
+ * @see https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity-using-notifications.html
9
+ * @public
10
+ * @since 1.1.0
11
+ */
12
+ export declare class SesWebhookDriver implements WebhookDriver {
13
+ /**
14
+ * Handles the AWS SES/SNS webhook request.
15
+ *
16
+ * @param c - The Gravito request context.
17
+ * @returns Array of processed events or null if ignored.
18
+ */
19
+ handle(c: GravitoContext): Promise<{
20
+ event: string;
21
+ payload: any;
22
+ }[] | null>;
23
+ }
@@ -0,0 +1,71 @@
1
+ # Advanced Email Rendering Guide
2
+
3
+ `@gravito/signal` provides a powerful rendering engine that allows you to build complex, responsive, and type-safe emails using modern frontend frameworks.
4
+
5
+ ## 1. Component-Based Emails (React & Vue)
6
+
7
+ Instead of traditional HTML templates, you can use React or Vue components to design your emails. This enables component reuse and strong typing.
8
+
9
+ ### React with MJML
10
+ For truly responsive emails across all clients, we recommend using **MJML** components within React:
11
+
12
+ ```tsx
13
+ import { Mailable } from '@gravito/signal'
14
+ import { WelcomeTemplate } from './templates/WelcomeTemplate'
15
+
16
+ export class WelcomeEmail extends Mailable {
17
+ build() {
18
+ return this
19
+ .subject('Welcome to Gravito!')
20
+ .react(WelcomeTemplate, { name: 'User' })
21
+ }
22
+ }
23
+
24
+ // WelcomeTemplate.tsx (using MJML style)
25
+ export const WelcomeTemplate = ({ name }: { name: string }) => (
26
+ <mj-body>
27
+ <mj-section>
28
+ <mj-column>
29
+ <mj-text font-size="20px">Hello {name}!</mj-text>
30
+ </mj-column>
31
+ </mj-section>
32
+ </mj-body>
33
+ )
34
+ ```
35
+
36
+ ## 2. Localization (I18n) Integration
37
+
38
+ `OrbitSignal` integrates with Gravito's translation system to provide localized email content.
39
+
40
+ ```typescript
41
+ export class OrderConfirmation extends Mailable {
42
+ build() {
43
+ // The subject and view will be translated based on the current locale
44
+ return this
45
+ .subject(this.t('emails.order_confirmed'))
46
+ .view('emails/orders', { id: this.order.id })
47
+ }
48
+ }
49
+ ```
50
+
51
+ ## 3. Dynamic Styles and Assets
52
+
53
+ Manage assets and styles dynamically to ensure your emails look great on all devices.
54
+
55
+ - **Inlining Styles**: All CSS used in your templates is automatically inlined during the rendering phase.
56
+ - **Image Assets**: Use the `asset()` helper to generate full URLs for images hosted in your public directory or a CDN.
57
+
58
+ ## 4. Testing Your Renderers
59
+
60
+ Test your mailable's rendering without sending any emails:
61
+
62
+ ```typescript
63
+ import { WelcomeEmail } from './mailables/WelcomeEmail'
64
+
65
+ it('should render the correct HTML', async () => {
66
+ const mailable = new WelcomeEmail({ name: 'Carl' })
67
+ const content = await mailable.renderContent()
68
+
69
+ expect(content.html).toContain('Hello Carl!')
70
+ })
71
+ ```