我在这里尝试了解决方案,但它不起作用:Drupal get site wide email address?
这是我的代码(在page.tpl.php中):
<a href="mailto:<?php variable_get('site_mail', ini_get('sendmail_from')); ?>">My name</a>
感谢。
答案 0 :(得分:1)
您忘记将变量打印到页面上:)
<a href="mailto:<?php print variable_get('site_mail', ini_get('sendmail_from')); ?>">My name</a>