Skip to content

Set up instructions

Vijay Santhanam edited this page Apr 5, 2017 · 2 revisions

The unit tests only run if you add SetUp.xml into the EmailSender.Tests folder.

SetUp.xml contains various configuration settings for running the tests and looks like

<?xml version="1.0" encoding="utf-8" ?>
<SetUp>
  <Smtp>
    <HostName>smtp.your-isp.com</HostName>
    <Port>25</Port>
    <UserName>james@woods.com</UserName>
    <Password>example_pw</Password>
    <From>from@email.address.com</From>
    <To>to@email.address.com</To>
  </Smtp>

  <Gmail>
    <Account>your_gmail_email@gmail.com</Account>
    <Password>paaassssword</Password>
    <To>destination@dump-truck.com</To>
  </Gmail>


</SetUp>
Clone this wiki locally