Ticket #147 (defect)
Opened 2 years ago
Last modified 1 year ago
Bugs in send Client Email
Status: closed (fixed)
| Reported by: | Rick | Assigned to: | brieb |
|---|---|---|---|
| Priority: | major | Milestone: | 0.8 |
| Component: | phpbms | Version: | 0.7 |
| Keywords: | Cc: | ||
Send client email just displays an alert "clients_email_process.php?id=123" when processing the emails and no email is sent.
There are two bugs which are stopping emails working properly:
1. In clients_email_process.php, after
require("../../include/session.php");
insert the line:
include("../../include/common_functions.php");
because common functions is required to allow the dateToString function to be called later in this routine.
2. In clientemail.js, at line 175, change:
if(response.getElementsByTagName('result')[0].firstChild.data!="sent"){
to
if(response.getElementsByTagName('result')[0].firstChild.data!="Sent"){
Attachments
Change History
06/02/07 23:17:32: Modified by brieb
- status changed from new to assigned.
- milestone changed from unknown to 0.8.
06/12/07 23:23:43: Modified by dsterry
I've tested this and it allows me to send emails to multiple recipients but it reports a false error. I get the "Error Sending Email" error next to each recipient even though the email did in fact go out. Must be something with the xml being returned from the process.php file.
07/12/07 01:02:25: Modified by anonymous
- cc set to painting.
- keywords set to game.
- priority changed from major to critical.
- summary changed from Bugs in send Client Email to game.
- milestone changed from 0.8 to 0.7.
07/12/07 08:53:18: Modified by brieb
- cc deleted.
- keywords deleted.
- priority changed from critical to major.
- summary changed from game to Bugs in send Client Email.
- milestone changed from 0.7 to 0.8.
07/30/07 09:22:32: Modified by brieb
- status changed from assigned to closed.
- resolution set to fixed.
Fixed by [252]
Rick,
Is there a way you can submit the changes in a patch?