01-08-2012, 10:11 AM 
		
	
	
		I require to also send out mail notifications via Gmail/Google Apps.  The mail settings today do not permit that.  Any easy ways this can be achieved?  
Thanks
Srini
	
	
	
	
Thanks
Srini
| 
					Send mail notifications via Gmail
				 | 
| 
		
		
		01-08-2012, 10:11 AM 
		
	 
		I require to also send out mail notifications via Gmail/Google Apps.  The mail settings today do not permit that.  Any easy ways this can be achieved?   Thanks Srini 
		
		
		02-24-2012, 05:09 PM 
		
	 
		download PHPMailer from http://code.google.com/a/apache-extras.o...loads/list and add a folder called PHPMailer in the docRootOfLetoDMS  I changed file inc/inc.ClassEmail.php add after line 19 PHP Code: require_once('../PHPMailer/class.phpmailer.php'); in the class I added PHP Code: function mail($recipient, $subject, $message, $header){lines like PHP Code: return (mail($recipient->getEmail(), $this->replaceMarker($subject), $this->replaceMarker($message), $header) ? 0 : -1); PHP Code: return ($this->mail($recipient->getEmail(), $this->replaceMarker($subject), $this->replaceMarker($message), $header) ? 0 : -1); have fun rainer | 
| 
					« Next Oldest | Next Newest »
				 |