Ask not what osTicket community can do for you - ask what you can do for osTicket community

Go Back   osTicket Forums > osTicket 1.6.x > Mods and Customizations

Reply
 
Thread Tools Search this Thread Display Modes
  #51  
Old 03-16-2012, 12:56 PM
scagno83 scagno83 is offline
Junior Member
 
Join Date: Nov 2010
Posts: 4
Default

Hi all,

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?
Reply With Quote
  #52  
Old 04-11-2012, 07:36 AM
scagno83 scagno83 is offline
Junior Member
 
Join Date: Nov 2010
Posts: 4
Default

Hi all,

I have solved with this mod http://osticket.com/forums/showthread.php?t=3323

Bye
Reply With Quote
  #53  
Old 04-22-2012, 12:12 PM
ameedjamous ameedjamous is offline
Junior Member
 
Join Date: Apr 2012
Posts: 1
Default Cc Bcc: no e-mails received

Quote:
Originally Posted by jpowers40828 View Post
On the last step you put the add lines inside the } instead of after it.
Hello,

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?
Reply With Quote
  #54  
Old 10-11-2012, 10:42 PM
mathesonian mathesonian is offline
Member
 
Join Date: Jun 2012
Location: Houston, TX
Posts: 38
Default I think I got it.

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,
));
like so:

Code:
$smtp_to = array (

'To' => $to,

'Cc'=> $cc,

'Bcc' => $bcc;
Then replace;

Code:
$result = $mail->send($to, $headers, $body);
if(!PEAR::isError($result))
return true;
with

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.
Reply With Quote
  #55  
Old 03-14-2013, 09:09 AM
rugwiza rugwiza is offline
Junior Member
 
Join Date: Aug 2012
Posts: 7
Default CC

Hello,
Can you please send me the 3 working files for cc?
Regards,
Rugwiza



Quote:
Originally Posted by jpowers40828 View Post
can you send me the 3 files mentioned above?

jpowers40828@gmail.com
Reply With Quote
  #56  
Old 05-16-2013, 08:09 AM
amorino amorino is offline
Junior Member
 
Join Date: May 2013
Posts: 9
Default

Hello,
does this work with the last version of osticket 1.7 ?

Best regards
Amorino
Reply With Quote


Reply

Bookmarks

Tags
bcc field, cc field, email recipients, recipients, ticket response

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 08:08 PM.