17

我有一个通过 sp_send_dbmail 发送电子邮件的 SQL Server 2008 过程。

我正在使用以下代码:

  set @bodyText = ( select 
                      N'Here is one line of text ' +
                      N'It would be nice to have this on a 2nd line ' +
                      N'Below is some data: ' +
                      N' ' +
                      N' ' +
                      field1 +
                      N' ' +
                      field2 +
                      N' ' +
                      N'This is the last line'
                    from myTable )

    EXEC msdb.dbo.sp_send_dbmail
        @profile_name = 'myProfile',
        @recipients = @to,
        @body = @bodyText,
        @body_format = 'TEXT',
        @subject = 'Testing Email' ;

我的 myProfile 设置为使用本地 smtp 服务器,这会在 c:\inetpub\mailroot\queue 中生成一个 .EML 文件

当我打开其中一个 .eml 文件时(ug - 唯一可以打开它们的是 Outlook Express,在其他任何地方查看它们只会将正文显示为 base64 编码的 blob。)看起来它正在将结果呈现为 HTML -所以我不确定问题是否出在客户端,或者

我尝试将 \n 放入消息中,但这没有用。如何发送带有换行符的纯文本,并验证最终结果是否正确?

顺便说一句,我实际上无法发送电子邮件以使用真正的电子邮件客户端进行测试 - 公司。网络被锁定。

4

4 回答 4

22

我一直习惯CHAR(13)+CHAR(10)在 TSQL 中创建换行符(这似乎与 nvarchar 值混合使用),所以尝试这样的事情:

DECLARE @CRLF char(2)
       ,@bodyText nvarchar(max)
       ,@field1  nvarchar(10)
       ,@field2  nvarchar(10)
SELECT @CRLF=CHAR(13)+CHAR(10)
      ,@field1='your data'
      ,@field2='and more'

set @bodyText =
                N'Here is one line of text ' 
                +@CRLF+ N'It would be nice to have this on a 2nd line ' 
                +@CRLF+ N'Below is some data: ' + N' ' + N' ' + ISNULL(@field1,'') + N' ' + ISNULL(@field2 + N' ' ,'')
                +@CRLF+ N'This is the last line' 


PRINT @bodyText

输出:

Here is one line of text 
It would be nice to have this on a 2nd line 
Below is some data:   your data and more 
This is the last line

CHAR(13)+CHAR(10)将适用于msdb.dbo.sp_send_dbmail,我一直使用它发送格式化的电子邮件。

于 2010-08-18T17:20:13.770 回答
9

您实际上并没有插入任何换行符。您可以将它们直接嵌入到 SQL Server 中的字符串文字中,如下所示。

SET @bodyText = (SELECT N'Here is one line of text 
It would be nice to have this on a 2nd line 
Below is some data: 


' + field1 + N' 

' + field2 + N' 

' + N'This is the last line'
                 FROM   myTable);

或者更整洁的方法可能是

DECLARE @Template NVARCHAR(max) = 
N'Here is one line of text 
It would be nice to have this on a 2nd line 
Below is some data: 

##field1##

##field2##

This is the last line';

SET @bodyText = (SELECT REPLACE(
                    REPLACE(@Template, 
                       '##field1##', field1), 
                       '##field2##', field2)
                 FROM   myTable); 

myTable如果在将结果分配给标量变量时包含多行,两者都会引发错误。

于 2010-08-18T17:20:31.813 回答
5

正如Fernando68上面提到的,如果您被允许使用 HTML 电子邮件,请设置 @body_format = 'HTML',然后您可以使用<br/>换行符,并使用从 HTML 中获得的所有标签(如换行符)使其随心所欲, img, strong, 等等...

set @bodyText = ( select 
                  '<h1>My Data</h1><p>Here is one line of text<br/>
                   It would be nice to have this on a 2nd line <br/>
                   Below is some data: <br/>'
                   + field1 + '<br/>'
                   + field2 + '<br/>'
                   + 'This is the last line</p>'
                   from myTable )

EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'myProfile',
    @recipients = @to,
    @body = @bodyText,
    @body_format = 'HTML',
    @subject = 'Testing Email' ;
于 2017-04-25T17:28:32.773 回答
1

就我而言,纯文本电子邮件CHAR(13)+CHAR(10)已被 Outlook 格式化,“有用”地删除了额外的换行符(除非在 Outlook 选项中未选中它)。

此外,我的条目列表将是动态的,因此我将 STUFF FOR XML PATH 放在一起,它拉入了一个连接的字符串,并简单地添加了一个带有新换行符的文字空字符串,然后分配了 sp_send_dbmail 的@body = @emailBody:

DECLARE @emailBody VARCHAR(MAX)

SET @emailBody = CONCAT('files: '
    ,(SELECT STUFF((SELECT
    ' 

' + CONCAT([FileName],'.csv')
    FROM localdb.dbo.tableName
    for xml path(''), TYPE).value('.', 'VARCHAR(MAX)'),1,1,'')))
于 2021-01-06T16:03:24.793 回答