BCC per la funzione di posta drupal [chiuso]


20

Sto usando Drupal 7 e mi concentro sul lavoro con l'opzione e-mail. Sto usando il modulo Forward . Come posso aggiungere il campo CCN nella funzione drupal_mail ().

la mia funzione predefinita avendo,

drupal_mail('forward', 'forward_page', trim($to), language_default(), $params, $params['from']);

Risposte:


27

Tutto ciò che serve è nella matrice delle intestazioni dei messaggi di posta elettronica.

$params['headers'] = array(
    'Bcc' => 'bcc_email@example.com',
    'Cc' => 'cc_email@example.com',
);

Ecco un'implementazione di esempio di drupal_mail () con le intestazioni ccn incluse.

$params = array(
    'body' => $body,
    'subject' => $subject,
    'headers' => array(
        'Bcc' => $header_bcc,
        'Cc' => $header_cc
    )
);

$email = drupal_mail('ModuleName', 'message_key', $to, LANGUAGE_NONE, $params, $from, true);

Utilizzando hook_mail () è necessario aggiungere (grazie @ clive ):

/**
 * Implements hook_mail().
 */
function ModuleName_mail($key, &$message, $params) {
    switch ($key) {
        case 'message_key':
            $message['headers'] += $params['headers'];
    }
}

Abbiamo aggiunto il codice ma i campi cc e bcc non funzionano. Per favore, dai un'altra soluzione.
sathish

3

È possibile utilizzare l'alterazione hook mail per modificare o aggiungere ID di posta elettronica cc e bcc modificati, vedere l'esempio:


/**
 * Implements hook_mail_alter().
 */
function hook_mail_alter(&$message) {
  $message['to'] = 'mail@gmail.com';
  $message['headers']['Bcc'] = 'Your mail ids goes here with comma seperation';
  $message['headers']['Cc'] = 'Your mail ids goes here with comma seperation';
}

Inoltre puoi usare gli ID di posta bcc e cc nell'array $ params di drupal_mail ():


$params = array(
  'body' => $body,
  'subject' => 'Your Subject',
  'headers' => array(
    'Cc' => 'Your mail ids goes here with comma seperation',
    'Bcc' => 'Your mail ids goes here with comma seperation',
  ),
);


2

Puoi farlo:

$message['headers']['Bcc'] = 'email@address.com';

1

In hook_mail_alter()uso $message['params']['headers']['Bcc'] = 'yourmail@gmail.com';.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.