Loading
Safety Cloud
目錄
選取篩選

          沒有結果
          沒有結果
          以下是搜尋小祕訣

          檢查關鍵字的拼字。
          使用較常見的搜尋字詞。
          選取較少篩選條件以擴大您的搜尋。

          搜尋所有 Salesforce 說明
          Schedule the Confirmation and Verification Emails

          Schedule the Confirmation and Verification Emails

          With the Developer Console, you can schedule the SendConfirmationEmails and the SendVerificationEmails Apex class

          Required Editions

          Available in: Enterprise and Unlimited Editions

          Complete these steps to schedule the confirmation and verification emails.

          1. Schedule the ScheduleConfirmationEmails Apex class through the Developer Console.
            We suggest scheduling the ScheduleConfirmationEmails every 5 minutes.

            Sample code for the confirmation email:

            
            for (Integer i = 0; i < 60; i = i + 5) {
                System.schedule('Confirmation ' + i + ' mins', '0 ' + i + ' * * * ?', new safetycloud.ScheduleConfirmationEmails());
            }
            
          2. Schedule the ScheduleVerificationEmails Apex class through the Developer Console.
            We suggest scheduling the ScheduleVerificationEmails every 10 minutes.

            Sample code for the verification email:

            
            for (Integer i = 0; i < 60; i = i + 10) {
                System.schedule('Verification ' + i + ' mins', '0 ' + i + ' * * * ?', new safetycloud.ScheduleVerificationEmails());
            }
            
           
          正在載入
          Salesforce Help | Article