MCPcopy Create free account
hub / github.com/pollinations/pollinations / runExamples

Function runExamples

apps/micro/examples/brevo-example.js:130–149  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

128
129// Run all examples
130async function runExamples() {
131 console.log('🚀 Brevo Email Service Examples\n');
132
133 await verifyBrevoConnection();
134 console.log('');
135
136 await sendSimpleEmail();
137 console.log('');
138
139 await sendWelcomeEmail();
140 console.log('');
141
142 await sendPasswordResetEmail();
143 console.log('');
144
145 await sendBulkEmail();
146 console.log('');
147
148 console.log('✨ All examples completed!');
149}
150
151// Only run if this file is executed directly
152if (import.meta.url === `file://${process.argv[1]}`) {

Callers 1

brevo-example.jsFile · 0.70

Calls 6

verifyBrevoConnectionFunction · 0.85
logMethod · 0.80
sendSimpleEmailFunction · 0.70
sendWelcomeEmailFunction · 0.70
sendPasswordResetEmailFunction · 0.70
sendBulkEmailFunction · 0.70

Tested by

no test coverage detected