There is no build-in function in Excel to send a mail to outlook when a cell change to a value.
You may use cell change event macro to accomplish it.
Send Outlook emails with VBA macros | EasyTweaks.com
Run a macro when certain cells change in Excel - Office | Microsoft Learn
1.Alt F11 to Open VB editor.
2.Tool>Reference>Check Microsoft Outlook 16.0 Object Library
3.Copy code to your sheet Name
- After your KeyCells is changed to "New" or "Exit/Term", a mail will be auto sent.
=============================================================
Private Sub Worksheet_Change(ByVal Target As Range)
Dim KeyCells As Range
Set KeyCells = Range("A1")
If Not Application.Intersect(KeyCells, Range(Target.Address)) _
Is Nothing Then
If Range("A1") = "New" Or Range("A1") = "Exit/Term" Then
Dim MyEmail As MailItem
Set MyEmail = Application.CreateItem(olMailItem)
With MyEmail
.To = "<type your recipient email address/ess here>"
.Subject = "<type the subject of your email here>"
.Body = "<type the email message text here>"
.BodyFormat = olFormatHTML
.Display
.Send
End With
End If
End If
End Sub
=============================================================