I am creating a store procedure but while executing the procedure i am getting the particular error.
Msg 217, Level 16, State 1, Procedure SendMail_Renewapp,
ALTER your database for RECURSIVE_TRIGGERS.
If nested triggers are allowed and a trigger in the chain starts an infinite loop, the nesting level is exceeded and the trigger terminates. That time you do get this error. so simply rune this query.
USE yourdatabase
GO
-- Turn recursive triggers OFF in the database.
ALTER DATABASE yourdatabase
SET RECURSIVE_TRIGGERS OFF
GO
Hope your problem will resolve.