# sendwp/1.1/includes/interface.mailer.php

SendWP, version 1.1. 12 lines.

- Page: https://pluginprobe.com/plugins/sendwp/1.1/code/includes/interface.mailer.php
- Raw: https://pluginprobe.com/plugins/sendwp/1.1/raw/includes/interface.mailer.php
- Modified: 2019-11-22T15:03:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sendwp/1.1/code/includes/interface.mailer.php#L10-L20`.

```php
<?php

namespace SendWP;

/**
 * An interface for decorating phpMailer.
 */
interface MailerInterface
{
    public function send();
}

```
