Search found 5 matches
- 22 Apr 2016, 07:19
- Forum: General Discussion
- Topic: Unusual Email Behavior when using cron
- Replies: 1
- Views: 3817
Re: Unusual Email Behavior when using cron
To be clear I just use the Cron on running the script not sending the email. Technically the process of sending the email is inside the script so it shouldn't be a bother right?
- 22 Apr 2016, 06:55
- Forum: General Discussion
- Topic: Unusual Email Behavior when using cron
- Replies: 1
- Views: 3817
Unusual Email Behavior when using cron
I wrote three scripts for SENDING EMAILS in Mantis.
Each has this function to send email.
function notify_email( $p_user_realname, $p_user_email, $v_bug_id , $v_QMR) {
$v_subject = "Some text";
$v_message = "Some text";
if( !is_blank( $p_user_email ) ) {
email_store( $p_user_email, $v ...
Each has this function to send email.
function notify_email( $p_user_realname, $p_user_email, $v_bug_id , $v_QMR) {
$v_subject = "Some text";
$v_message = "Some text";
if( !is_blank( $p_user_email ) ) {
email_store( $p_user_email, $v ...
- 29 Mar 2016, 03:23
- Forum: Help
- Topic: Running on localhost. Unable receive an email.
- Replies: 3
- Views: 2841
Re: Running on localhost. Unable receive an email.
I'm pretty sure it's within Mantis because I am receiving email from my test scripts (outside Mantis).
- 29 Mar 2016, 02:10
- Forum: Help
- Topic: Running on localhost. Unable receive an email.
- Replies: 3
- Views: 2841
Re: Running on localhost. Unable receive an email.
^^ That actually helped when I ran a test NOT using Mantis. But when I tried my script in Mantis. Still not able to receive email.
- 22 Mar 2016, 03:31
- Forum: Help
- Topic: Running on localhost. Unable receive an email.
- Replies: 3
- Views: 2841
Running on localhost. Unable receive an email.
Hi!
I am currently writing a script for our Mantis Tracker. It's supposed to send emails and I'm a bit stuck on this part because the composed email is saved in the database but I am unable to receive the email.
I'm still testing the script so I'm running on my localhost. Below is my ...
I am currently writing a script for our Mantis Tracker. It's supposed to send emails and I'm a bit stuck on this part because the composed email is saved in the database but I am unable to receive the email.
I'm still testing the script so I'm running on my localhost. Below is my ...