使用php和sql server 2008传递数据库邮件参数到存储过程


pass Database Mail parameters to stored prcedure using php and sql server 2008

我想在我的应用程序中使用Database邮件,这意味着我需要将参数传递给存储过程sp_send_dbmail我有下面的代码只是为了测试的目的。然而,我想知道如何使用ssql server 2008和php传递参数到存储过程。仅供参考,我正在使用Microsoft的sqlsrv驱动程序

<?php require_once ('../Connection/connmail.php')?> 
<?php
 $sql = "{CALL sp_send_dbmail[[@profile_name='gmailsmtp']]}";//my stored procedure
    $stmt = sqlsrv_query($conn,$sql)or die(print_r(sqlsrv_errors(),true));    

 ?> 
上面的代码产生错误
Array ( [0] => Array ( [0] => 42000 [SQLSTATE] => 42000 [1] => 102 [code] => 102 [2] => [Microsoft][SQL Server Native Client 10.0][SQL Server]Incorrect syntax near '{'. [message] => [Microsoft][SQL Server Native Client 10.0][SQL Server]Incorrect syntax near '{'. ) [1] => Array ( [0] => 42000 [SQLSTATE] => 42000 [1] => 105 [code] => 105 [2] => [Microsoft][SQL Server Native Client 10.0][SQL Server]Unclosed quotation mark after the character string '[@profile_name='gmailsmtp']}'. [message] => [Microsoft][SQL Server Native Client 10.0][SQL Server]Unclosed quotation mark after the character string '[@profile_name='gmailsmtp']}'. ) ) 

如有任何帮助,不胜感激

我看到这个问题有一段时间没有得到回答,所以这里是解决方案。让您的用户成为msdb系统数据库中的databasemailuserrole

$callmailproc = "EXEC msdb.dbo.sp_send_dbmail @profile_name = ?, @recipients=?, @subject=?, @body=?";
$profilename = 'DatabaseMail';
$recipients = 'recipient@domain.com';
$subject='Test Message';
$body = 'This is the body';
$params = array( 
                 array($profilename, SQLSRV_PARAM_IN),
                 array($recipients, SQLSRV_PARAM_IN),
                 array($subject, SQLSRV_PARAM_IN),
                 array($body, SQLSRV_PARAM_IN),
                 );
/* Execute the query. */
$stmt3 = sqlsrv_query( $conn, $callmailproc, $params);
if( $stmt3 === false )
{
     echo "Error in executing statement 3.'n";
     die( print_r( sqlsrv_errors(), true));
}