BUG 6790 fixed issue about PMF Send Message wizard

This commit is contained in:
Alvaro Campos
2011-05-03 10:17:30 -04:00
parent 43a5e137ac
commit a798c049c4

View File

@@ -763,10 +763,11 @@ function getEmailConfiguration () {
* @param string(32) | $sBcc | Email addres for copies hidden | The email address(es) of people who will receive blind carbon copies of the email.
* @param string(32) | $sSubject | Subject of the email | The subject (title) of the email.
* @param string(32) | $sTemplate | Name of the template | The name of the template file in plain text or HTML format which will produce the body of the email.
* @param array | $aFields=array() | An associative array optional | Optional parameter. An associative array where the keys are the variable name and the values are the variable's value.
* @param array | $aFields | An associative array optional | Optional parameter. An associative array where the keys are the variable name and the values are the variable's value.
* @return int | $result | result | Result of sending email
*
*/
//@param array | $aFields=array() | An associative array optional | Optional parameter. An associative array where the keys are the variable name and the values are the variable's value.
function PMFSendMessage($caseId, $sFrom, $sTo, $sCc, $sBcc, $sSubject, $sTemplate, $aFields = array()) {
G::LoadClass('wsBase');
$ws = new wsBase ();