• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript mail.send函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中@sendgrid/mail.send函数的典型用法代码示例。如果您正苦于以下问题:TypeScript send函数的具体用法?TypeScript send怎么用?TypeScript send使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了send函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1:

          recipients.forEach(recipient => {

            if (birthdayMailing[0].emails.indexOf(recipient.email) === -1) {
              bccList.push(recipient.email);
            }

            const birthdaySample = birthdayWishes[Math.floor(Math.random() * birthdayWishes.length)];

            const mail: any = {
              to: recipient.email,
              bcc: bccList,
              from: '[email protected]',
              subject: 'Alles Gute zum Geburtstag!',
              templateId: '780bf24e-b085-4ece-9262-f727c47a3edc',
              substitutionWrappers: ['{{', '}}'],
              substitutions: {
                firstName: recipient.firstName,
                lastName: recipient.lastName,
                age: recipient.age,
                message: birthdaySample.message,
                author: birthdaySample.author
              }
            };
            mailArray.push(sgMail.send(mail));
          });
开发者ID:Meistercoach83,项目名称:sfw,代码行数:25,代码来源:birthday-reminder.ts


示例2: moment

  .onPublish(async () => {

    try {
      const applicationsSnapshot = await admin.firestore().collection('applications')
        .where('isCurrentApplication', '==', true)
        .get();
      const currentApp = applicationsSnapshot.docs[0].data();

      const teamOfTheWeekMailing = currentApp.mailing.filter(mailing => {
        return mailing.isActive && mailing.title === 'Mannschaft des Monats';
      });

      if (teamOfTheWeekMailing && teamOfTheWeekMailing.length > 0) {

        const teamsSnapshot = await admin.firestore().collection('teams').get();

        const sample = teamsSnapshot.docs[Math.floor(Math.random() * teamsSnapshot.size)];

        await admin.firestore().collection(collectionString)
          .doc(now.format('YYYY') + '-' + now.month())
          .create({
            assignedTeamId: sample.data().id,
            title: now.format('YYYY') + '-' + now.month()
          });

        const current = moment().add(1, 'month');

        const msg = {
          to: teamOfTheWeekMailing[0].emails,
          from: '[email protected]',
          subject: 'Mannschaft des Monats ' + now.format('MM') + '.' + now.format('YYYY'),
          templateId: 'cd68a992-a76c-4b47-8dda-a7d9c68fd1b3',
          substitutionWrappers: ['{{', '}}'],
          substitutions: {
            adminName: 'Thomas',
            teamName: sample.data().title + ' (' + sample.data().subTitle + ')',
            monthString: current.month() + '.' + now.format('YYYY')
          }
        };
        return sgMail.send(msg);
      } else {
        console.warn('Kein Mail-Verteiler mit dem Namen "Mannschaft des Monats" gefunden');
        return true;
      }
    } catch (e) {
      console.error(e);
      return e;
    }
  });
开发者ID:Meistercoach83,项目名称:sfw,代码行数:49,代码来源:team-of-the-month.ts


示例3:

  .onCreate((event: any) => {

    const msg = {
      to: '[email protected]',
      from: '[email protected]',
      subject: 'Neuer Benutzer',
      templateId: '758f452a-aa4d-4664-8088-5a5ce2a814ac',
      substitutionWrappers: ['{{', '}}'],
      substitutions: {
        email: event.email ? event.email : event.displayName,
        name: 'Thomas',
        siteName: 'sfwinterbach.com'
      }
    };

    return sgMail.send(msg);
  });
开发者ID:Meistercoach83,项目名称:sfw,代码行数:17,代码来源:user-created.ts


示例4: moment

  .schedule('0 5 * * *').onRun(async context => {

    try {

      const monthDay = moment().format('MM-DD');
      const mailArray: any = [];

      const recipients: {
        email: string,
        firstName: string,
        lastName: string,
        age: number
      }[] = [];

      const appQuery = db.collection('applications').where('isCurrentApplication', '==', true);
      const applicationsSnapshot = await appQuery.get();
      const currentApp = applicationsSnapshot.docs[0].data();

      const memberQuery = db.collection('members').where('mainData.birthday.monthDay', '==', monthDay);
      const membersSnapshot = await memberQuery.get();

      let birthdayList = '<ul>';

      membersSnapshot.docs.forEach(function(doc) {
        const memberData = doc.data();

        const age = calculateAge(memberData.mainData.birthday.year, memberData.mainData.birthday.month, memberData.mainData.birthday.day);

        if (memberData.contact && memberData.contact.email) {
          const data = {
            email: memberData.contact.email,
            firstName: memberData.mainData.firstName,
            lastName: memberData.mainData.lastName,
            age: age
          };
          recipients.push(data);
        }
        birthdayList += '<li>' + memberData.mainData.firstName + ' ' + memberData.mainData.lastName + ' wird heute ' + age + ' Jahre</li>';
      });

      // if no there are no birthdays today
      if (birthdayList === '<ul>') {
        birthdayList = '<li>Heute hat niemand Geburtstag.</li>';
      }

      birthdayList += '</ul>';

      const birthdayMailing = currentApp.mailing.filter(mailing => {
        return mailing.isActive && mailing.title === 'Geburtstagsgrüße als Kopie';
      });

      if (birthdayMailing && birthdayMailing.length > 0) {


        if (membersSnapshot.size > 0 && recipients.length === 0) {
          const text = 'Es wurden keine Email Adressen der Geburtstagskinder hinterlegt.';
          console.warn(text);
          birthdayList += '<p>' + text + '</p>';
          const mail: any = {
            to: birthdayMailing[0].emails,
            from: '[email protected]',
            subject: 'Geburtstage vom ' + moment().format('LL'),
            templateId: '3b21edd6-0c49-40c2-a2e3-68ae679ff440',
            substitutionWrappers: ['{{', '}}'],
            substitutions: {
              adminName: '',
              birthdayList: birthdayList,
              dateString: moment().format('LL')
            }
          };
          mailArray.push(sgMail.send(mail));
        } else {

          mailArray.push(sgMail.send({
            to: birthdayMailing[0].emails,
            from: '[email protected]',
            subject: 'Geburtstage vom ' + moment().format('LL'),
            templateId: '3b21edd6-0c49-40c2-a2e3-68ae679ff440',
            substitutionWrappers: ['{{', '}}'],
            substitutions: {
              adminName: '',
              birthdayList: birthdayList,
              dateString: moment().format('LL')
            }
          }));


          const bccList: string[] = [];
          console.log(recipients);
          recipients.forEach(recipient => {

            if (birthdayMailing[0].emails.indexOf(recipient.email) === -1) {
              bccList.push(recipient.email);
            }

            const birthdaySample = birthdayWishes[Math.floor(Math.random() * birthdayWishes.length)];

            const mail: any = {
              to: recipient.email,
              bcc: bccList,
//.........这里部分代码省略.........
开发者ID:Meistercoach83,项目名称:sfw,代码行数:101,代码来源:birthday-reminder.ts


示例5: moment

  .topic('members-of-the-week').onPublish(async () => {

    try {

      const now = moment();
      const docId: string = now.week() + '-' + now.format('YY');

      const applicationsSnapshot = await admin.firestore().collection('applications')
        .where('isCurrentApplication', '==', true)
        .get();
      const currentApp = applicationsSnapshot.docs[0].data();

      const membersOfTheWeekMailing = currentApp.mailing.filter(mailing => {
        return mailing.isActive && mailing.title === 'Mitglieder der Woche';
      });

      if (membersOfTheWeekMailing && membersOfTheWeekMailing.length > 0) {

        const memberSnapshot = await db.collection(collectionName).get();

        const clubList = memberSnapshot.docs.filter((doc) => {
          const member = doc.data();
          return member.clubStatus && member.clubStatus > 0 && member.clubStatus !== 2;
        });

        const ahList = memberSnapshot.docs.filter((doc) => {
          const member = doc.data();
          return member.ahStatus && member.ahStatus > 0;
        });

        const playerList = memberSnapshot.docs.filter((doc) => {
          const member = doc.data();
          return member.dfbData && member.dfbData.playerStatus;
        });

        const honoraryList = memberSnapshot.docs.filter((doc) => {
          const member = doc.data();
          return member.clubStatus && member.clubStatus === 2;
        });

        if (!clubList && ahList && playerList && honoraryList) {
          console.log({clubList, ahList, playerList, honoraryList});
          return true;
        }

        const clubMember = clubList[Math.floor(Math.random() * clubList.length)].data();
        const ahMember = ahList[Math.floor(Math.random() * ahList.length)].data();
        const playerMember = playerList[Math.floor(Math.random() * playerList.length)].data();
        const honoraryMember = honoraryList[Math.floor(Math.random() * honoraryList.length)].data();

        const data = {
          ah: {
            id: docId,
            type: 'ah',
            year: now.format('YY'),
            week: now.week(),
            assignedMemberId: ahMember.id
          },
          club: {
            id: docId,
            type: 'club',
            year: now.format('YY'),
            week: now.week(),
            assignedMemberId: clubMember.id
          },
          player: {
            id: docId,
            type: 'player',
            year: now.format('YY'),
            week: now.week(),
            assignedMemberId: playerMember.id
          },
          honorary: {
            id: docId,
            type: 'honorary',
            year: now.format('YY'),
            week: now.week(),
            assignedMemberId: honoraryMember.id
          }
        };

        await db.collection('member-of-the-week').doc(docId).create(data);

        const msg = {
          to: membersOfTheWeekMailing[0].emails,
          from: '[email protected]',
          subject: 'Mitglieder der Woche ' + now.week() + '/' + now.format('YY'),
          templateId: 'fc184c8b-b721-450f-add7-69ef4d20fe10',
          substitutionWrappers: ['{{', '}}'],
          substitutions: {
            adminName: '',
            clubMember: 'Verein: ' + clubMember['mainData'] ? clubMember['mainData']['firstName'] + ' ' + clubMember['mainData']['lastName'] : ' ???',
            ahMember: 'Alte Herren: ' + ahMember['mainData'] ? ahMember['mainData']['firstName'] + ' ' + ahMember['mainData']['lastName'] : ' ???',
            player: 'Spieler: ' + playerMember['mainData'] ? playerMember['mainData']['firstName'] + ' ' + playerMember['mainData']['lastName'] : ' ???',
            honorary: 'Ehrenmitglied: ' + honoraryMember['mainData'] ? honoraryMember['mainData']['firstName'] + ' ' + honoraryMember['mainData']['lastName'] : ' ???',
            weekString: now.week(),
            dateString: now.format('LL') + ' bis ' + now.add(6, 'days').format('LL')
          }
        };
        return sgMail.send(msg);
//.........这里部分代码省略.........
开发者ID:Meistercoach83,项目名称:sfw,代码行数:101,代码来源:member-of-the-week.ts



注:本文中的@sendgrid/mail.send函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript mail.setApiKey函数代码示例发布时间:2022-05-28
下一篇:
TypeScript validation.validateProjectName函数代码示例发布时间:2022-05-28
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap