发送一封电子邮件,其中包含另一个文件中定义的变量
Send an email with a variable defined in another file
我有文件 html 像 example.php
Url <a href="<? echo $var ?>"><? echo $var ?></a>
我想用这个文件发送邮件,变量定义在send.php
<?php
$var = "someurl";
$contents = file_get_contents("example.php");
mail("x@x.com", "x", $contents");
?>
我的问题是 send.php 发送 Url <a href="<? echo $var ?>"><? echo $var ?></a>
相反
Url someurl
其中 someurl 是超链接。
我试过 fread() 但效果是一样的。
有人知道怎么做吗?
您可以使用 Php 的输出缓冲和一个包含:
<?php
$var = "someurl";
ob_start();
include 'example.php';
$contents = ob_get_clean();
mail("x@x.com", "x", $contents);
?>
我有文件 html 像 example.php
Url <a href="<? echo $var ?>"><? echo $var ?></a>
我想用这个文件发送邮件,变量定义在send.php
<?php
$var = "someurl";
$contents = file_get_contents("example.php");
mail("x@x.com", "x", $contents");
?>
我的问题是 send.php 发送 Url <a href="<? echo $var ?>"><? echo $var ?></a>
相反
Url someurl
其中 someurl 是超链接。
我试过 fread() 但效果是一样的。
有人知道怎么做吗?
您可以使用 Php 的输出缓冲和一个包含:
<?php
$var = "someurl";
ob_start();
include 'example.php';
$contents = ob_get_clean();
mail("x@x.com", "x", $contents);
?>