ALM Site Administration API Type Library 12.50 and later
ActivateSendAllQualified Method
The domain name.
The project name.
Description
Activates the Auto Mail option and retrieves project properties.
Syntax
Visual Basic
Public Function ActivateSendAllQualified( _
   ByVal DomainName As String, _
   ByVal ProjectName As String _
) As String
Parameters
DomainName
The domain name.
ProjectName
The project name.
Return Type

On success, returns an XML string containing the project properties.

Remarks
When SEND ALL QUALIFIED is active, automatic email notifications are sent for changes in defects according to the conditions configured in the project.
Return Value Details

The properties of the XML return string:

Example
Private Sub ActivateSendAllQualified()

'The following Visual Basic example invokes
' the SendAllQualified function.
    Dim sDomainName As String, sProjectName As String
    Dim sReply As String
    On Error GoTo err
    sDomainName = "MyDomain"
    sProjectName = "MyProject"
    sReply = m_SAClient.ActivateSendAllQualified _
        (sDomainName, sProjectName)
    MsgBox sReply
    Exit Sub
err:
    MsgBox "Program failed:" + err.Description
End Sub
See Also

SAapi Object  | SAapi Members