Вход Регистрация
Файл: qa-include/qa-app-emails.php
Строк: 169
<?php

/*
    Question2Answer (c) Gideon Greenspan

    http://www.question2answer.org/

    
    File: qa-include/qa-app-emails.php
    Version: See define()s at top of qa-include/qa-base.php
    Description: Wrapper functions for sending email notifications to users


    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation; either version 2
    of the License, or (at your option) any later version.
    
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    More about this license: http://www.question2answer.org/license.php
*/

    
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
        
header('Location: ../');
        exit;
    }

    require_once 
QA_INCLUDE_DIR.'qa-app-options.php';


    function 
qa_suspend_notifications($suspend=true)
/*
    Suspend the sending of all email notifications via qa_send_notification(...) if $suspend is true, otherwise
    reinstate it. A counter is kept to allow multiple calls.
*/
    
{
        global 
$qa_notifications_suspended;
        
        
$qa_notifications_suspended+=($suspend : -1);
    }
    
    
    function 
qa_send_notification($userid$email$handle$subject$body$subs)
/*
    Send email to person with $userid and/or $email and/or $handle (null/invalid values are ignored or retrieved from
    user database as appropriate). Email uses $subject and $body, after substituting each key in $subs with its
    corresponding value, plus applying some standard substitutions such as ^site_title, ^handle and ^email.
*/
    
{
        if (
qa_to_override(__FUNCTION__)) { $args=func_get_args(); return qa_call_override(__FUNCTION__$args); }
        
        global 
$qa_notifications_suspended;
        
        if (
$qa_notifications_suspended>0)
            return 
false;
        
        require_once 
QA_INCLUDE_DIR.'qa-db-selects.php';
        require_once 
QA_INCLUDE_DIR.'qa-util-string.php';
        
        if (isset(
$userid)) {
            
$needemail=!qa_email_validate(@$email); // take from user if invalid, e.g. @ used in practice
            
$needhandle=empty($handle);
            
            if (
$needemail || $needhandle) {
                if (
QA_FINAL_EXTERNAL_USERS) {
                    if (
$needhandle) {
                        
$handles=qa_get_public_from_userids(array($userid));
                        
$handle=@$handles[$userid];
                    }
                    
                    if (
$needemail)
                        
$email=qa_get_user_email($userid);
                
                } else {
                    
$useraccount=qa_db_select_with_pending(
                        
qa_db_user_account_selectspec($useridtrue)
                    );
                    
                    if (
$needhandle)
                        
$handle=@$useraccount['handle'];
    
                    if (
$needemail)
                        
$email=@$useraccount['email'];
                }
            }
        }
            
        if (isset(
$email) && qa_email_validate($email)) {
            
$subs['^site_title']=qa_opt('site_title');
            
$subs['^handle']=$handle;
            
$subs['^email']=$email;
            
$subs['^open']="n";
            
$subs['^close']="n";
        
            return 
qa_send_email(array(
                
'fromemail' => qa_opt('from_email'),
                
'fromname' => qa_opt('site_title'),
                
'toemail' => $email,
                
'toname' => $handle,
                
'subject' => strtr($subject$subs),
                
'body' => (empty($handle) ? '' qa_lang_sub('emails/to_handle_prefix'$handle)).strtr($body$subs),
                
'html' => false,
            ));
        
        } else
            return 
false;
    }
    

    function 
qa_send_email($params)
/*
    Send the email based on the $params array - the following keys are required (some can be empty): fromemail,
    fromname, toemail, toname, subject, body, html
*/
    
{
        if (
qa_to_override(__FUNCTION__)) { $args=func_get_args(); return qa_call_override(__FUNCTION__$args); }
        
        require_once 
QA_INCLUDE_DIR.'qa-class.phpmailer.php';
        
        
$mailer=new PHPMailer();
        
$mailer->CharSet='utf-8';
        
        
$mailer->From=$params['fromemail'];
        
$mailer->Sender=$params['fromemail'];
        
$mailer->FromName=$params['fromname'];
        
$mailer->AddAddress($params['toemail'], $params['toname']);
        
$mailer->Subject=$params['subject'];
        
$mailer->Body=$params['body'];

        if (
$params['html'])
            
$mailer->IsHTML(true);
            
        if (
qa_opt('smtp_active')) {
            
$mailer->IsSMTP();
            
$mailer->Host=qa_opt('smtp_address');
            
$mailer->Port=qa_opt('smtp_port');
            
            if (
qa_opt('smtp_secure'))
                
$mailer->SMTPSecure=qa_opt('smtp_secure');
                
            if (
qa_opt('smtp_authenticate')) {
                
$mailer->SMTPAuth=true;
                
$mailer->Username=qa_opt('smtp_username');
                
$mailer->Password=qa_opt('smtp_password');
            }
        }
            
        return 
$mailer->Send();
    }


/*
    Omit PHP closing tag to help avoid accidental output
*/
Онлайн: 0
Реклама