CREATE PROCEDURE [dbo].[usp_email] @To varchar(255), @Body varchar(500) AS declare @rc int EXEC @rc = master.dbo.xp_smtp_sendmail @FROM = N'randomemail@address.com', @FROM_NAME = N'Some Person', @TO = @To, @subject = N'This is the subject', @message = N'
Title
Paragraph 1
', @type = 'HTML', --I just put HTML in there to see if it would work. The email sends but still in plain text. ...