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

SendWP, version 1.2.8. 14 lines.

- Page: https://pluginprobe.com/plugins/sendwp/1.2.8/code/includes/interface.mailer.php
- Raw: https://pluginprobe.com/plugins/sendwp/1.2.8/raw/includes/interface.mailer.php
- Modified: 2022-05-30T19:40:54+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.2.8/code/includes/interface.mailer.php#L10-L20`.

```php
<?php

namespace SendWP;

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

```
