Skip to main content
ibituya
Staff
Staff
April 28, 2026

Technical Tip: How to delete Email To configured on Automation Stitch action

  • April 28, 2026
  • 0 replies
  • 23 views

Description

This article describes how to delete the Email To configured on the Automation Stitch Action.

Scope

FortiGate.

Solution

Automation stitches can be configured on the FortiGate to send email notifications based on the trigger applied. The email setting for where to send the notifications to is configured under Security Fabric -> Automation -> Action.

efe17067.png


After the Email To is configured, it cannot be edited to be left blank, as the field is required.

be9bd06b.png


If the email setting is required to be completely removed, the custom Action entry itself can be deleted. However, the option to delete is not possible with the default 'Email Notification' automation action.

f58f96dd.png


To remove the email from the default 'Email Notification' automation action, the following CLI commands can be applied:


FortiGate # config system automation-action

FortiGate (automation-action) # edit "Email Notification"

FortiGate (Email Notification) # show
config system automation-action
    edit "Email Notification"
        set description "Send a custom email to the specified recipient(s)."
        set action-type email
        set email-to "email@example.com"
        set email-subject "%%log.logdesc%%"
    next
end

FortiGate (Email Notification) # unset email-to 

FortiGate (Email Notification) # end