I'm wanting to query a database and have it sent to multiple recipients, and part of the body of the email can be different for each recipient. (My dbmail with the correct profile seems to be working fine.) When I do the following, only the last email is received (text2). Is there a way to do this sending to multiple recipients with customized body text without a cursor?DECLARE @t TABLE(id INT IDENTITY, email VARCHAR(50), myText varchar(10))INSERT INTO @t (email,mytext)SELECT 'Email_1@email.net','text1' union all SELECT 'Email_2@email.net','text2'DECLARE @email VARCHAR(50), @text varchar(10)SELECT @email = email, @text=mytext FROM @t EXEC msdb.dbo.sp_send_dbmail@Profile_name = 'MyProfileName',@recipients = @email,@body = @text,@subject = 'Test Email'