Skip to content

Instantly share code, notes, and snippets.

View AndoxADX's full-sized avatar

Andox Yap AndoxADX

View GitHub Profile
@AndoxADX
AndoxADX / outbound-email-with-cloudflare.md
Created April 27, 2024 09:55 — forked from irazasyed/outbound-email-with-cloudflare.md
Using Gmail SMTP with Cloudflare Email Routing: A Step-by-Step Guide

Using Gmail SMTP with Cloudflare Email Routing: Step-by-Step Guide

Learn how to send emails through Gmail SMTP with Cloudflare Email Routing in this comprehensive guide.

Step 1: Enable 2-Factor Authentication

To proceed with this method, ensure that you have enabled two-factor authentication for your Google account. If you haven't done so already, you can follow the link to set it up → Enable 2FA in your Google account.

Step 2: Create an App Password for Mail

@AndoxADX
AndoxADX / .\templates\function-app.bicep
Created February 14, 2023 07:50 — forked from dazfuller/.\templates\function-app.bicep
Example template for deploying an Azure Function app with KeyVault references all set in Bicep
/*
** Parameters
*/
@minLength(3)
@maxLength(6)
@description('Prefix to be used by all resources deployed by this template')
param resourcePrefix string = 'demo'
@allowed([
'Standard_LRS'