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