|
#51
|
|||
|
|||
|
I have installed version 1.6.0 stable, and unfortunately, this module does not work in my system. Does somebody already have an idea or solution for it? |
|
#52
|
|||
|
|||
|
|
|
#53
|
|||
|
|||
|
Quote:
I have done the above steps but unfortunately the e-mails to cc: and bcc: were not delivered as they should. Also i couldn't find the last step the text $headers="MIME-Version: 1.0\n" , any idea in the mentioned file? |
|
#54
|
|||
|
|||
|
Saw this bug on pear.php.net
that steered me in the right direction. First follow scottro's tutorial here. create an array in class.email.php right before this statement. Code:
if($smtp){ //Send via SMTP
$mail = mail::factory('smtp',
array ('host' => $smtp['host'],
'port' => $smtp['port'],
'auth' => $smtp['auth']?true:false,
'username' => $smtp['username'],
'password' => $smtp['password'],
'timeout' =>20,
'debug' => false,
));
Code:
$smtp_to = array ( 'To' => $to, 'Cc'=> $cc, 'Bcc' => $bcc; Code:
$result = $mail->send($to, $headers, $body); if(!PEAR::isError($result)) return true; Code:
$result = $mail->send($smtp_to, $headers, $body); if(!PEAR::isError($result)) return true; If you followed all of scottro's steps plus mine you should now be able to send cc and bcc emails when replying to a ticket when using smtp. Just make sure to not make a bcc header if you want it to ne a true blind carbon copy. Last edited by mathesonian; 10-12-2012 at 09:24 AM. |
|
#55
|
|||
|
|||
|
Hello,
Can you please send me the 3 working files for cc? Regards, Rugwiza Quote:
|
|
#56
|
|||
|
|||
|
Hello,
does this work with the last version of osticket 1.7 ? Best regards Amorino |
![]() |
| Bookmarks |
| Tags |
| bcc field, cc field, email recipients, recipients, ticket response |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|