Changes between Version 19 and Version 20 of EmailProcessorMacro


Ignore:
Timestamp:
Sep 23, 2019, 4:55:47 PM (5 years ago)
Author:
figaro
Comment:

Move example to description

Legend:

Unmodified
Added
Removed
Modified
  • EmailProcessorMacro

    v19 v20  
    1010
    1111[[Image(email_formatter_example.png)]]
     12
     13Please see the following example:
     14
     15The email processor is invoked by wrapping the `#!email`-processor around the body content of the email in your wiki page:
     16{{{
     17 {{{#!email
     18 <email stuff here>
     19 }}}
     20}}}
     21
     22To wrap to a specified length, the line immediately following the invocation should contain `cols: ` followed by the number of columns at wich we wrap. For example:
     23{{{
     24 {{{#!email
     25 cols: 40
     26 <email stuff here>
     27 }}}
     28}}}
     29
     30It is important that the `cols:` starts at the beginning of the line and that only a number follows it.
    1231
    1332The EmailProcessorMacro is installed on Trac-Hacks, so you can test it out. Please do so only by previewing, not by submitting tickets.
     
    4059 * Restart your web server.
    4160
    42 == Example
    43 
    44 Invocation:
    45 {{{
    46  {{{#!email
    47  <email stuff here>
    48  }}}
    49 }}}
    50 
    51 To wrap to a specified length, the line immediately following the invocation should contain `cols: ` followed by the number of columns at wich we wrap. For example:
    52 {{{
    53  {{{#!email
    54  cols: 40
    55  <email stuff here>
    56  }}}
    57 }}}
    58 
    59 It is important that the `cols:` starts at the beginning of the line and that only a number follows it.
    60 
    6161== Recent Changes
    6262