在电子邮件内容中发送图像 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
有什么想法吗?
我正在尝试按照
自定义发送 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
有什么想法吗?