다른 접근법이 있습니다. ( 이 샌드 박스 에서 코드를 사용할 수 있습니다 .)
nodemail.info
name = Nodemail
description = Sends node e-mails.
core = 7.x
nodemail.install '
<?php
function nodemail_enable() {
$current = variable_get('mail_system', array('default-system' => 'DefaultMailSystem'));
$addition = array('nodemail' => 'NodemailMailSystem');
variable_set('mail_system', array_merge($current, $addition));
}
function nodemail_disable() {
$mail_system = variable_get('mail_system', array('default-system' => 'DefaultMailSystem'));
unset($mail_system['nodemail']);
variable_set('mail_system', $mail_system);
}
nodemail.module
<?php
class NodemailMailSystem extends DefaultMailSystem {
public function format(array $message) {
$message['body'] = implode("\n\n", $message['body']);
$message['body'] = drupal_wrap_mail($message['body']);
return $message;
}
}
function nodemail_mail($key, &$message, $params) {
switch ($key) {
case 'node_mail':
$message['headers']['Content-Type'] = 'text/html; charset=UTF-8;';
$message['subject'] = $params['subject'];
$message['body'][] = $params['body'];
break;
}
}
function nodemail_node_insert($node) {
if ($node->type == 'mycontenttype') {
$params['subject'] = 'Node "' . $node->title . '" was created';
$params['body'] = render(node_view($node));
$to = variable_get('site_mail', '');
$from = 'noreply@example.com';
$lang = language_default();
drupal_mail('nodemail', 'node_mail', $to, $lang, $params, $from);
}
}
설치 파일 내용 및 NodemailMailSystem 클래스는이 모듈이 html 전자 우편을 보낼 수 있도록하는 데 사용됩니다. 다른 두 가지 함수는 의 노드 가 생성 될 때 전자 메일 보내기를 처리하는 hook_mail () 및 hook_node_insert ()의 구현입니다 mycontenttype
. 주목해야 할 것은 Drupal은 노드 뷰에 노드 생성 페이지 (또는 테마가없는 경우 코어 node.tpl.php)에 사용되는 테마의 노드 템플릿 파일을 사용한다는 것입니다. . 여기에 사용 된 node_view () 및 drupal_mail () 함수 를 점검 할 수도 있습니다. 이 모든 것이 Drupal 7 핵심 기능과 함께 작동해야합니다 (기여 된 모듈이 필요하지 않음).