Subversion Repositories DevTools

Rev

Rev 908 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 908 Rev 922
Line 243... Line 243...
243
          if ( owners != null )
243
          if ( owners != null )
244
          {
244
          {
245
            String body =
245
            String body =
246
            "Release: " + release + "<p>" +
246
            "Release: " + release + "<p>" +
247
            "Package: " + pkg.mName + "<p>" + 
247
            "Package: " + pkg.mName + "<p>" + 
248
            mRootCause;
248
            "Cause: " + mRootCause + "<p><hr>";
249
            
249
            
250
            try
250
            try
251
            {
251
            {
252
              Smtpsend.send(
252
              Smtpsend.send(
253
              mailServer, // mailServer
253
              mailServer,       // mailServer
254
              mailSender, // source
254
              mailSender,       // source
255
              owners, // target
255
              owners,           // target
256
              null, // cc
256
              null,             // cc
257
              null, // bcc
257
              null,             // bcc
258
              "BUILD FAILURE on package " + pkg.mName, // subject
258
              "BUILD FAILURE on package " + pkg.mName, // subject
259
              body, // body
259
              body,             // body
260
              null // attachment
260
              null              // attachment
261
              );
261
              );
262
            }
262
            }
263
            catch( Exception e )
263
            catch( Exception e )
264
            {
264
            {
265
            }
265
            }