Send an email Function

Issue #305 resolved
FatimaM created an issue

Hi We try to use HTML format for E-mail's Body and use some Jira format,but it does not applied.See attachment

Comments (4)

  1. Fidel Castro Armario repo owner

    Hi Fatima,

    You are not using HTML but the wiki-like syntax of JIRA comments.

    For implementing panels nicely you can use Bootstrap. Here is an HTML code sample for panels.

    <head>
      <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
    </head>
    
    <body> 
    <div class="container">
      <h2>Panels with Contextual Classes</h2>
      <div class="panel-group">
        <div class="panel panel-default">
          <div class="panel-heading">Panel with panel-default class</div>
          <div class="panel-body">Panel Content</div>
        </div>
    
        <div class="panel panel-primary">
          <div class="panel-heading">Panel with panel-primary class</div>
          <div class="panel-body">Panel Content</div>
        </div>
    
        <div class="panel panel-success">
          <div class="panel-heading">Panel with panel-success class</div>
          <div class="panel-body">Panel Content</div>
        </div>
    
        <div class="panel panel-info">
          <div class="panel-heading">Panel with panel-info class</div>
          <div class="panel-body">Panel Content</div>
        </div>
    
        <div class="panel panel-warning">
          <div class="panel-heading">Panel with panel-warning class</div>
          <div class="panel-body">Panel Content</div>
        </div>
    
        <div class="panel panel-danger">
          <div class="panel-heading">Panel with panel-danger class</div>
          <div class="panel-body">Panel Content</div>
        </div>
      </div>
    </div>
    </body>
    

    You can use the following online editor to compose your message and look instantly the result you will obtain.

    Anyway, I made available version 2.2.11_beta_1 which provides an option to notify by email in post-function "Add a comment".

  2. FatimaM reporter

    Thanks for tip

    This beta version could we use or to wait for official release of this version?

  3. Log in to comment