Maileon PHP client  1.5.0
Easily integrate your PHP application with Maileon.
Attachment.php
1 <?php
2 
9 {
10  public $filename;
11  public $mimetype;
12  public $data;
13 
20  function __construct($filename, $mimetype, $data)
21  {
22  $this->filename = $filename;
23  $this->mimetype = $mimetype;
24  $this->data = $data;
25  }
26 
27  function toString()
28  {
29  return "Attachment [filename=" . $this->filename . ", mimetype=(" . $this->mimetype . "), content=(" . $this->content . ")]";
30  }
31 }
__construct($filename, $mimetype, $data)
Definition: Attachment.php:20