public function EasyEmail::setAttachmentPaths in Easy Email 8
Same name and namespace in other branches
- 2.0.x src/Entity/EasyEmail.php \Drupal\easy_email\Entity\EasyEmail::setAttachmentPaths()
 
@inheritDoc
Overrides EasyEmailInterface::setAttachmentPaths
File
- src/
Entity/ EasyEmail.php, line 718  
Class
- EasyEmail
 - Defines the Email entity.
 
Namespace
Drupal\easy_email\EntityCode
public function setAttachmentPaths($paths) {
  if ($this
    ->hasField('attachment_path')) {
    $this
      ->set('attachment_path', $paths);
  }
  return $this;
}