Skip to content

Configuring the tcPrettyEmail plugin

netwolfuk edited this page Aug 5, 2014 · 9 revisions

The plugin is configured by editing TeamCity's main-config.xml file. The minimum requirement is a <pretty-email> tag and a <smtp> child element. Here is a simple example.

    <pretty-email>
        <smtp host="mail.yourcompany.com" 
              port="25" 
              from-address="foobar@example.com" 
              from-name="Foo Bar" 
              username="foobar" 
              password="barfoo" />
    </pretty-email>

There are a number of other options you can configure.

<< Installing | More options >>

Clone this wiki locally