6

我写了一些电子邮件代码,我需要发送所有带有签名的电子邮件。

我被要求将签名存储在 web.config 文件的 appsettings 中。

我不确定这是否是正确的地方。有人可以建议我吗?据我所知,那里只会有一个电子邮件签名。

我试过了:

<appSettings>
<add key="CompanyEmailSignature" value="The Biscuit Factory\n\r
        Somewhere in the Bahamas\n\r
        <a href="http://www.thebiscuitfactory.com">The Biscuit Factory</a>\n\r
        Our mission is to make tasty biscuits" />

    </appSettings>

但是我不确定如何逃脱链接。我看了一些建议并尝试了:

<a href=""http://www.thebiscuitfactory.com"">The Biscuit Factory</a>

我试过了:

<a href=\"http://www.thebiscuitfactory.com\">The Biscuit Factory</a>

但无法让它工作。

谁能告诉我如何摆脱这种情况,如果还有其他地方可以更好地存储它?

4

1 回答 1

13

您是否已经尝试将<and更改>&lt;and &gt;

<并且>不允许在 xml (appsettings) 属性中。

您也"可以尝试使用&quot;

所以最后你有这个:

<appSettings>
<add key="CompanyEmailSignature" value="
    The Biscuit Factory\n\r
    Somewhere in the Bahamas\n\r
    &lt;a href=&quot;http://www.thebiscuitfactory.com&quot;&gt;The Biscuit Factory&lt;/a&gt;\n\r
    Our mission is to make tasty biscuits
" />
</appSettings>
于 2013-05-08T22:47:44.993 回答