Link to home
Start Free TrialLog in
Avatar of RickEpnet
RickEpnetFlag for United States of America

asked on

Osticket multiple email addresses

I am using Osticket for my help desk but I want to be able to add more email addresses in the email field when I edit a ticket.
I do not want CC or BCC I just want to be able to enter multiple email addresses separated by comas in the email field so it will go to more email users.  
This is on a Windows Server so it is PHP with IIS 6.  OS Ticket v1.6 ST
Avatar of Muhammad Wasif
Muhammad Wasif
Flag of Pakistan image

Normally there is only one owner of the ticket who has created the ticket. Other persons should be in Cc or BCc. I found this hack/MOD for osticket. Is this you were looking for?
Avatar of RickEpnet

ASKER

This is not really what I wanted but I when ahead and made this mod. Everything seems to work but...it says to use the php mail function not smtp or this will not work.

I cannot get it to use the PHP mail function how do I do that (no email is being sent). I have full access to the server this is NOT hosted.
Ok I test the mail function and it is workin this mod still is not sending email. See code below that I use to test.
<?php
$to = "user@xxxxxxx.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "noreply@xxxxxx.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of RickEpnet
RickEpnet
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Did not get an answer that worked.
Did not get an answer that worked.