public function DevelMailLog::getOutputDirectory in Devel 7
Retrieves the directory that contains message files.
Return value
The path to mail messages, possibly using a file URI scheme.
1 call to DevelMailLog::getOutputDirectory()
- DevelMailLog::getFileName in ./
devel.mail.inc - Gets a filename for a message using tokens.
File
- ./
devel.mail.inc, line 119 - MailSystemInterface for logging mails to the filesystem.
Class
- DevelMailLog
- Logs mail messages to the filesystem.
Code
public function getOutputDirectory() {
return variable_get('devel_debug_mail_directory', 'temporary://devel-mails');
}