value: async()

in email-lambda/run.ts [77:95]


            value: async () =>
              sendEmail({
                email: yourEmail, // in real life this would be a mailing list address
                emailData: {
                  pinboardId: "65284",
                  workingTitle: "Some more pinboard email-lambda testing",
                  headline: "This really is a brilliant feature",
                  firstName: "Bess",
                  lastName: "Twishes",
                  avatarUrl: null, // intentionally null, to show render can handle people without avatars
                  id: "2619",
                  type: "claim",
                  message: null,
                  thumbnailURL: null,
                  timestamp: new Date("2023-05-12T12:07:10.039Z"),
                },
                isIndividualMentionEmail: false,
                ref: 2618, // same as the group mention above
              }).then(console.log),