Come inviare a livello di codice un'e-mail?


Risposte:


63

Utilizzando hook_mail e drupal_mail è possibile creare e inviare un'e-mail.

Implementare un uso e-mail hook_mail:

function MODULENAME_mail ($key, &$message, $params) {
  switch ($key) {
    case 'mymail':
      // Set headers etc
      $message['to'] = 'foo@bar.com';
      $message['subject'] = t('Hello');
      $message['body'][] = t('Hello @username,', array('@username' => $params['username']));
      $message['body'][] = t('The main part of the message.');
      break;
  }
}

Per inviare una mail usa drupal_mail:

drupal_mail($module, $key, $to, $language, $params = array('username' => 'John Potato'), $from = NULL, $send = TRUE)

Ovviamente sostituisci i parametri: $ key dovrebbe essere uguale a 'mymail'

Un'e-mail viene inviata in pochi passaggi:

  1. si chiama drupal_mail
  2. Drupal crea l'e-mail
  3. hook_mail è chiamato per i dettagli (implementazione)
  4. hook_mail_alter viene chiamato in modo che altri moduli possano modificarlo
  5. viene chiamato drupal_send_mail

5
Ha ragione, ma per chiarire un po 'hook_mail ti fornisce un modo per strutturare e tema un'e-mail basata su una chiave arbitraria che definisci. drupal_mail () è ciò che chiami per inviare un'e-mail. Passa la chiave per la struttura che desideri utilizzare. (e il modulo che risponde a quella chiave)
Jason Smith

9
In questo esempio $message['to']è hard coded su foo@bar.com. Omettilo e il messaggio verrà inviato al destinatario specificato quando drupal_mail()viene chiamato.
pfrenssen,

12

Se desideri un modo più semplice di inviare e-mail, dai un'occhiata a Simple Mail ; è un modulo su cui sto lavorando per rendere l'invio di e-mail con Drupal 7+ molto più semplice e non richiede implementazioni hook aggiuntive o conoscenze MailSystem. L'invio di un'e-mail è semplice come:

simple_mail_send($from, $to, $subject, $message);

... e funziona anche con Drupal 8, con la stessa identica API :)
geerlingguy,

1

Puoi utilizzare un modo più semplice di inviare e-mail, controlla il sistema di posta ; è un modulo.

<?php
$my_module = 'foo';
$from = variable_get('system_mail', 'organization@example.com');
$message = array(
  'id' => $my_module,
  'from' => $from,
  'to' => 'test@example.com',
  'subject' => 'test',
  'body' => 'test',
  'headers' => array(
    'From' => $from, 
    'Sender' => $from, 
    'Return-Path' => $from,
  ),
);

$system = drupal_mail_system($my_module, $my_mail_token);
if ($system->mail($message)) {
  // Success.
}
else {
  // Failure.
}
?>

Funziona perfettamente.
WM,

0

Puoi usare questo codice in un gancio a tua scelta all'interno del tuo modulo personalizzato:

 function yourmodulename_mail($from = 'default_from', $to, $subject, $message) {
            $my_module = 'yourmodulename';
            $my_mail_token = microtime();
            if ($from == 'default_from') {
                // Change this to your own default 'from' email address.
                $from = variable_get('system_mail', 'admin@yoursite.com');
            }
            $message = array(
                'id' => $my_module . '_' . $my_mail_token,
                'to' => $to,
                'subject' => $subject,
                'body' => array($message),
                'headers' => array(
                    'From' => $from,
                    'Sender' => $from,
                    'Return-Path' => $from,
                ),
            );
            $system = drupal_mail_system($my_module, $my_mail_token);
            $message = $system->format($message);
            if ($system->mail($message)) {
                return TRUE;
            } else {
                return FALSE;
            }
        }

Quindi è possibile utilizzare la funzione sopra in questo modo:

        $user = user_load($userid); // load a user using its uid
        $usermail = (string) $user->mail; // load user email to send a mail to it OR you can specify an email here to which the email will be sent 
        customdraw_mail('default_from', $usermail, 'You Have Won a Draw -- this is the subject',  'Congrats! You have won a draw --this is the body');
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.