Actions
Bug #1725
closedFilenames missing in email attachments API
Description
this should be like this:
/** * Mail function (uses phpMailer or SMTP depending on global settings) * * @param string $from From e-mail address * @param string $fromname From name * @param string|array $recipient Recipient e-mail address(es) * @param string $subject E-mail subject * @param string $body Message body * @param boolean $mode false = plain text, true = HTML * @param string|array $cc CC e-mail address(es) * @param string|array $bcc BCC e-mail address(es) * @param string|array $attachment Attachment file name(s)-------------------> (array index is filename, if string) * @param string|array $replyto ReplyTo e-mail address(es) * @param string|array $replytoname ReplyTo name(s) * @return boolean True: mail sent, False: mail not sent (error) */ function comprofilerMail( $from, $fromname, $recipient, $subject, $body, $mode = 0, $cc = null, $bcc = null, $attachment = null, $replyto = null, $replytoname = null ) {
Updated by beat over 14 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Fixed in commit r1085 .
Actions