Skip To Content

Ajouter et configurer une étape Send Email (Envoyer un e-mail)

L’étape Send Email (Envoyer un e-mail) envoie une notification par e-mail à un ou plusieurs destinataires lorsque l’étape est exécutée. Ce type d’étape peut être utilisé pour avertir des utilisateurs lorsqu’une étape ou une tâche est terminée ou lorsqu’une étape n’aboutit pas.

Remarque :

Vous devez configurer les paramètres de messagerie pour ArcGIS Workflow Manager avant de pouvoir utiliser l’étape Send Email (Envoyer un e-mail) afin d’envoyer des notifications par e-mail.

Configuration de l’étape

To configure the step, do the following:

  1. Create or edit a workflow diagram to access the Step Library panel.
  2. Faites glisser Send Email (Envoyer un e-mail) depuis le volet Step Library (Bibliothèque d’étapes) vers une flèche de connexion d’une étape de la zone d’affichage du workflow.

    The Step Details panel appears.

  3. Provide a name for the step in the Step Name text box.
  4. Type email addresses separated by a semicolon in the To, CC, and BCC text boxes as necessary, or use an ArcGIS Arcade expression to create a dynamic list of recipients.

    One email address

    user1@test.com

    Multiple email addresses

    user1@test.com;user2@test.com;user3@test.com;user4@test.com

    Email addresses and Arcade expressions

    user1@test.com;"arcadeExpression()";user3@test.com;"arcadeExpression()"

    One Arcade expression

    "arcadeExpression()"

    Multiple Arcade expressions

    "arcadeExpression()";"arcadeExpression()";"arcadeExpression()";"arcadeExpression()"

    Arcade expressions and email addresses

    "arcadeExpression()";user2@test.com;"arcadeExpression()";user4@test.com

    Remarque :

    At least one valid email address or Arcade expression must be provided in the To, CC, or BCC text box.

  5. Type a subject for the email notification in the Subject text box.

    You can also use ArcGIS Arcade expressions to provide a dynamic value for the subject. For example, jobName($job)+' is ready'.

  6. Type the message text for the email notification in the Body text box.

    You can also use the following example to provide a dynamic value for the body using Arcade expressions:

    '<b>'+jobName($job)+'</b>, created by <b>'+jobCreator($job)+'</b>, was closed on <b>'+Text(Date(jobEndDate($job)), 'dddd, MMMM D, Y')+'</b>.'
    Remarque :

    You must enable the HTML Notification option to use HTML tags in the email body field.

  7. Optionally, if your jobs include attachments, you can choose to include job attachments in the email notification using the following options under Include Attachments:
    • None—Don't include job attachments in the email notification.
    • All—Include all job attachment folders in the email notification.
    • By Folder—Type a comma separated list of folder names in the By Folder text box to specify the job attachment folders to include in the email notification.
    Remarque :

    If a job contains multiple attachments, they are sent as a single ZIP file and attachment folder structure is maintained.

  8. Optionally, type a job ID in the Preview Email text box and click Preview to preview the email.
    Remarque :

    If the email contains an Arcade expression for the output value of a step, the step must be completed before you can preview the output value.

  9. Click the Options tab.
  10. Configure Step Options as necessary.
    • Manual—Run the step manually.
      • Optional—Allow the step to be finished without being run.
    • Automatic—Run the step as soon as it becomes active.
      Remarque :

      If your workflow diagram is configured to automatically run a sequence of steps that includes the Evaluate Data Quality or the Run GP Service step, steps that attempt to run after the user token that started the sequence of steps expires will not run automatically. You must have a license for the ArcGIS Workflow Manager Server Advanced role to continue running the additional automated steps without manual intervention.

    • Run on a Schedule—Run the step according to a schedule you set.

      Learn more about scheduling options

  11. Optionally, provide help text for the step in the Step Help text box.

    You can also use the following example to display a dynamic value using ArcGIS Arcade expressions:

    'For further assistance, please contact ' + jobCreator($job) + '.'
  12. Optionally, click the Style tab to change the shape and color of the step.
  13. Optionally, click the About tab and provide a description for the step in the Step Description text box.
    Remarque :

    The About tab also contains the step's ID that can be used with dynamic job properties to obtain a step's output.

Return value

When the step is completed, its return value is stored to indicate the result of the step. The return value can be immediately evaluated using paths to determine the next steps in the workflow. You can also retrieve the return value for completed steps throughout the workflow using ArcGIS Arcade expressions. The following table lists the step's return values:

Return valuesDescription

S000001

The step completed successfully.

F000001

The step failed to complete successfully.

Rubriques connexes