Html 如何禁用电子邮件链接?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/5013625/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-29 06:44:55  来源:igfitidea点击:

How to disable an email link?

htmlruby-on-railsmailto

提问by user502052

I am using Ruby on Rails 3 and I would like to disable an email address link in a HTMLemail.

我正在使用 Ruby on Rails 3,我想禁用HTML电子邮件中的电子邮件地址链接。

For example, if in an email I send some raw HTML like

例如,如果在电子邮件中我发送了一些原始 HTML,例如

Hi, you email is: <br/>
[email protected]

Gmail autodetects that this is an email address and changes it to

Gmail 会自动检测到这是一个电子邮件地址并将其更改为

Hi, you email is: <br/>
<a target="_blank" href="mailto:[email protected]">[email protected]</a>

I would like to have this output

我想要这个输出

# Text without the 'mailto:' link
Hi, you email is:
[email protected]

How can I do that?

我怎样才能做到这一点?

采纳答案by rubyprince

You can try

你可以试试

Hi, you email is:<br />
test&#64;email&#46;com

回答by raugfer

I have a more natural suggestion: wrap the email/url in an anchor hyperlink.

我有一个更自然的建议:将电子邮件/网址包装在锚超链接中。

<a name="myname">[email protected]</a>

Since the text is already wrapped in a hyperlink, Gmail gives up and leave it alone. :)

由于文本已经包含在超链接中,Gmail 放弃并保留它。:)

(Note: also worked for Apple mail client.)

(注意:也适用于 Apple 邮件客户端。)

回答by Prince Mishra

Even I had the same problem. Gmail would detect and convert mail addresses and ip addresses to links. I used string.replace to enclose dots (.) and @ in blocks. And that works fine for me. sample python code looks like.

即使我有同样的问题。Gmail 会检测邮件地址和 IP 地址并将其转换为链接。我使用 string.replace 将点 (.) 和 @ 括在块中。这对我来说很好用。示例python代码看起来像。

text = [email protected]
chars = ['.','@']
encloseIn = 'span'

for char in chars:
    text = string.replace(text, char, '<'+encloseIn+'>'+char+'</'+encloseIn+'>')

回答by Armando José Zárate Mojica

Reading all answers, I tried this in a Joomla article and it worked:

阅读所有答案,我在 Joomla 的一篇文章中尝试了这个,它奏效了:

<p><strong>This is the email address: </strong><a name="whatever">youremail&#64domain.com</a></p>

Result:

结果:

This is the email address: [email protected]

这是电子邮件地址:[email protected]

Worked on Chrome and Firefox.

曾在 Chrome 和 Firefox 上工作。

回答by drmartin

You just need to add the "zero width space" character, his code in HTML is:

你只需要添加“零宽度空间”字符,他在HTML中的代码是:

&#8203;

This code adds a space in the string where you need. For a respectable solution you need to complement this method with a <nobr>tag, because with this tag you can prevent from breaking to the next line.

此代码在您需要的字符串中添加一个空格。对于一个体面的解决方案,你需要用一个<nobr>标签来补充这个方法,因为使用这个标签你可以防止中断到下一行。

回答by Syfer

Late reply but i think I have found a way to get over this auto linking issue.

迟到的回复,但我想我已经找到了解决这个自动链接问题的方法。

The easiest and fastest way is to add a zero width non joiner between each alphabets. Now that sounded hard so I developed a small script that made things easy for me. Run the code below, add email address (paste or type) and it adds the required code around the email address.

最简单和最快的方法是在每个字母之间添加一个零宽度的非连接符。现在这听起来很难,所以我开发了一个小脚本,让我的事情变得容易。运行下面的代码,添加电子邮件地址(粘贴或键入)并在电子邮件地址周围添加所需的代码。

$('#userInput').keyup(function() {
    var s = $(this).val().trim();
    var text = "";
    for ( var i = 0; i < s.length; i++ )
        {
            text += s[i]+'&zwnj;' ;
        } 
    $('p').text( text );
});
#userInput{max-width:400px;width:100%;padding:10px 5px;}
*{outline:none;}
p,#userInput{font-family: 'Roboto', sans-serif;}
p{word-break:break-all;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<input type="text" id="userInput" />

<p></p>

回答by Pan Thomakos

The only way to get around this is to convert the email address into an image and include that in the email. Of course this means the user might choose to not download the image, which would mean they won't get the email address either.

解决此问题的唯一方法是将电子邮件地址转换为图像并将其包含在电子邮件中。当然,这意味着用户可能会选择不下载图像,这意味着他们也不会获得电子邮件地址。

What it really comes down to is that you can't control what Gmail or any other email client does once it receives an email, so there isn't another way around this. It's Gmail's, or any other email client's, choice to do what they want with emails, and that includes hyper-linking email addresses.

真正归结为您无法控制 Gmail 或任何其他电子邮件客户端在收到电子邮件后执行的操作,因此没有其他方法可以解决此问题。Gmail 或任何其他电子邮件客户端可以选择使用电子邮件执行他们想要的操作,其中包括超链接电子邮件地址。

If you are very adamant about not converting emails into hyperlinks you can try to do other things to conceal the fact that it's an email, like writing it out instead:

如果您非常坚持不将电子邮件转换为超链接,您可以尝试做其他事情来隐藏它是电子邮件的事实,例如将其写出来:

Hi, your email is:
test at email dot com

Of course this is probably more confusing. If I were you, I would simply settle for the fact that Gmail will hyper-link your emails.

当然,这可能更令人困惑。如果我是你,我会满足于 Gmail 会超链接你的电子邮件这一事实。