<div class="container">
                <div class="row">
                    <div class="col-sm-3 col-md-2 sidebar">
                        <?php 
        include_once '../admin-navigation.php';
        ?>
                    </div>
                </div>

                <div class="col-sm-9 col-sm-offset-3 col-md-9 col-md-offset-3 main">
                    <h2 class="page-header">Manage Sellers</h2>

                    <h3>Multiple Email Send</h3>
                    <form method="post" action="multipleEmail.php">
                        <?php 
        $sellers = $sellCon->getMailingListSellers(1);
        if ($sellers->errorInfo()[2] == null) {
            $rows = $sellers->fetchAll();
            $rowCount = count($rows);
            if ($rowCount > 0) {
                ?>
                <table class="table table-responsive table-hover">
                    <tr>
                        <th>Surname</th><th>First Name</th><th>Email Address</th><th>Mailing List</th><th>Email?</th>
                    </tr>
                    <?php 
                foreach ($rows as $row) {
                    $person = $personCon->getPerson($row['person_id']);
                    if ($person->errorInfo()[2] == null) {
                        $personRow = $person->fetch();
                        $personCount = count($personRow);