Vorrei utilizzare il sistema di posta elettronica di Drupal per inviare a livello di codice un'e-mail dal mio modulo personalizzato. È possibile?
Vorrei utilizzare il sistema di posta elettronica di Drupal per inviare a livello di codice un'e-mail dal mio modulo personalizzato. È possibile?
Risposte:
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:
$message['to']
è hard coded su foo@bar.com
. Omettilo e il messaggio verrà inviato al destinatario specificato quando drupal_mail()
viene chiamato.
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);
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.
}
?>
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');