How can I run the stored procedure when there is an insert operation in SQL Server (without trigger), that is, when data is entered into the table?
CREATE TRIGGER Mail_Send
ON [Oral_Overprint_2].[dbo].[table]
AFTER INSERT
AS
BEGIN
EXEC Mail_Table_Procedure
END