I'm working on a system that creates incidences and I'm sending them as an email. It is being sent to a groupwise system, and I'd like to have it show up as a task instead of a standard email. I found the header for a task on the novell site, and i've added it into my $headers variable that I send with the mail function, but I haven't had any success. Hopefully someone out there has dealt with this and can help out. Here's what I've got:
Sample Header File: Task
WPC-API= 1.2;
From= Hawaii.API.Apiuser;
To= Hawaii.Kona.Drew;
Date-Sent= 25/1/93 11:00;
Security= Proprietary; T
ask-Priority= 1;
Task-Category= A;
Begin-Time= 15/2/93 8:00;
End-Time= 15/2/93 9:00;
From-Text= API User;
Subject= Review documentation and reply;
Msg-File= TASK_10.msg;
-END-
My $headers variable:
$headers = "WPC-API: 1.2\n";
$headers .= "MSG-TYPE: Task\n";
$headers .= "From: test@clark.edu\n";
$headers .= "Security: Proprietary\n";
$headers .= "Task-Priority: 1\n";
$headers .= "Task-Category: A\n";
$headers .= "Begin-Time: 30/4/03 8:00\n";
$headers .= "End-Time: 30/4/03 9:00\n";
Thanks in advance for any help.