在电子邮件内容中发送图像 Drupal 7 webform

send image in e-mail content Drupal 7 webform

我正在尝试按照

自定义发送 Drupal 网络表单的确认电子邮件模板
<?php print ($email['html'] ? '<p>' : '') .t('----,') .($email['html'] ? '</p>' : ''); ?>
<?php print ($email['html'] ? '<p> <b>' : '') .t('Michel Kevorkian') .($email['html'] ? '</b></p>' : ''); ?>    
<?php print ($email['html'] ? '<p>' : '') .t('23 rue du Départ') .($email['html'] ? '</p>' : ''); ?>
<?php print ($email['html'] ? '<p>' : '') .t('75014 Paris') .($email['html'] ? '</p>' : ''); ?>
<?php print ($email['html'] ? '<p>' : '') .t('T: + 33 6 64 30 24 03') .($email['html'] ? '</p>' : ''); ?>
<?php print ($email['html'] ? '<p>' : '') .t('T: + 374 55 94 75') .($email['html'] ? '</p>' : ''); ?>
<?php print ($email['html'] ? '<p>' : '') .t('www.asifabtp.fr') .($email['html'] ? '</p>' : ''); ?>

我需要像这样添加公司标志作为签名的一部分

LOGO GOES HERE   
23 rue du Départ
75014 Paris
T: + 33 6 64 30 24 03
T: + 374 55 94 75
www.asifabtp.fr

有什么想法吗?

http://cheekymonkeymedia.ca/blog/drupal-planet/4-easy-steps-configure-drupal-send-html-emails 本教程展示了它是如何完成的

为此你需要 2 个模块

https://www.drupal.org/project/mailsystem
https://www.drupal.org/project/mimemail