We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5f1a65 commit e65e618Copy full SHA for e65e618
src/references/web3mail/methods/sendEmailCampaign.md
@@ -179,11 +179,16 @@ const result = await web3mail.sendEmailCampaign({
179
});
180
181
console.log(`Created ${result.tasks.length} tasks`);
182
-result.tasks.forEach((task: { taskId: string; dealId: string; bulkIndex: number }, index: number) => {
183
- console.log(
184
- `Task ${index + 1}: ${task.taskId} (Deal: ${task.dealId}, Bulk Index: ${task.bulkIndex})`
185
- );
186
-});
+result.tasks.forEach(
+ (
+ task: { taskId: string; dealId: string; bulkIndex: number },
+ index: number
+ ) => {
187
+ console.log(
188
+ `Task ${index + 1}: ${task.taskId} (Deal: ${task.dealId}, Bulk Index: ${task.bulkIndex})`
189
+ );
190
+ }
191
+);
192
```
193
194
## Complete Example
0 commit comments