ckeditor email link issue in chrome and mozilla - email

When I type email address in Ck editor, Email Link is not getting formed automatically in chrome and Mozilla Firefox. But Email link is getting generated in IE properly. I am using ck editor 4.5.1
What I tried
Typed email address and provided space after the email address. Link generated to email in internet explorer. It is not happening in chrome and Mozilla
Steps to replicate:
type any email address and give space after that. (please don't copy and paste email address.)
After providing space after email address. it get converted to link in IE, but not in chrome and Mozilla Firefox.
e.g,
test#test.com
Any ideas?

I have never had much luck trying to cover all browsers without using the "link" feature and choosing email:
Or doing manual:
simple

Related

OCTOBERCMS Obfuscate an email address with html_email

i wanna obfuscate an email address to prevent spam-bots from sniffing it on my contact page.
I tried to use html_email function in href but the email address remained unchanged.
E-mail: My email
Anyone have any idea why the html_email function doesn't work.
Maybe another solution to obfuscate a email address in october?
It is working. If you look at the source file it is obfuscated. I believe bots sniff the source file. You are looking at the rendered html which displays the email correctly. Also if you use google chrome you can do ctrl-u to look at the source file. Firefox I just right click and click on view source and etc with more browsers.

mailto: valid address doesn't prompt mail app?

I'm trying to include a mailto link to a specific email address within the body copy of my HTML email.
For some reason, this particular email address does not register with my mailing app. My HTML here is:
here
and when I click the link, it opens a blank page and doesn't do anything.
https://imgur.com/VvecNiB
If I change the email address to be my own email address or feedack#(workplace).com or even misspelling the domain as feedback#(workplac).com, the mailing app registers this activity and I get a pop-up window. Any ideas why the particular email address, feedback#(workplace).com, doesn't work that way?
Thanks in advance for any advice or insight.
are you working on a BIF or RPL account in responsys? I normaly use the Clickthrough() function in responsys and place the link in the linktable.
HTML
Write to me
LINK TABLE
Name: mailtoMe
Url: mailto:feedback#(workplace).com

URL encoding issue in email campaigns

BACKGROUND:
Sitefinity CMS for my specific problem, but could be general too.
I have an email message which has an unsubscribe link in it like this:
To Unsubscribe: Click or copy paste the following link in your browser.
https://www.domain.com/unsubscribe?mailingList={|MailingList.Title|}&SubscriptionEmail={|Subscriber.Email|}
{|MailingList.Title|} and {|Subscriber.Email|} are sitefinity CMS subscriber fields. When I send out an email these two fields resolve to their respective values. Hence, the URL I get in an email is as following for example.
https://www.domain.com/unsubscribe?mailingList=mymailingList&subscriptionEmail=abc#xyz.com
The user can click on it and unsubscribe from the mailing list.
My Problem:
If the mailing list name has a space in it, the link that appears on the email is broken at the first occurance of the space(link the link shown below breaks immediately =my) and hence clicking it is like clicking a invalid URL.
https://www.domain.com/unsubscribe?mailingList=my mailing List&subscriptionEmail=abc#xyz.com
I dont understand why the space in the URL doesnt resolve to a %20.
My Trial:
I changed the order of the querystrings to see if it works(mailinglist was the last string originally, I put it in the middle)
I am fine if the URL does not get resolved into a link at all, just forcing the users to copy paste the entire URL. But, I was not able to do it as well.
I have read in microsoft forums that OUTLOOK resolves the spacing issue, when the URL is surrounded by < and > like this :
URL here:
But the URL doesnt even show up in the email just like it is not showing up here above this line.
Tested on OUTLOOK, GMAIL, YAHOOMAIL, MICROSOFT MAIL. The link is broken in all email clients.
Any suggestions on what is the best solution for this?

DFP "Serve ads in a non-JavaScript environment"

I read the guide at: http://support.google.com/dfp_premium/bin/answer.py?hl=en&answer=1638620
but i can't implement it.
I tried with this src for an image, but I see blank page: http://pubads.g.doubleclick.net/gampad/ad?iu=/4767628/TomsBlog_Home_ATF_300x250&sz=300x250&c=1803379939
Do you know how to do that?
The blank page seems to be an incompatibility between DFP and Outlook combined with a non-IE default browser.
Having implemented an email campaign and received an email carrying an ad into Outlook, the click-throughs work when I set my default browser to IE but not if I have it set to Chrome.
This post suggests it has something to do with cookies: Google DFP ads in email behaving strangely
Update: the issue I saw yesterday (ad link in email goes to blank page when using Outlook + non-IE) has gone away. Not sure if it was a temporary outage or if it's an intermittent problem)

File upload not working if the form link on Gmail is accessed on IE 9

My application sends email to users with a link to the application page where the user can upload a file for a business requirement. If the email is sent to a gmail id and when the user open the email in IE9 and clicks on the link, it navigates to the application page and when he tries to upload the file, it fails. There are no error messages shown on IE9 developer console.
The upload works fine in all browsers other than IE9.
If the user opens the link by right click -> Open in New tab, then the upload works fine
If the User clicks on the link directly, which by default Gmail will open in new tab on IE9, the upload fails.
I verified the URLs in either cases and there are no differences. I tried playing around with target attribute for the link (new, blank etc) and nothing helps.
Copy pasting the link in a new tabs works. But not clicking on the link
This is a IE9 issue - apparently you can work around it by setting IE9 in IE8 mode in Gmail (nice huh!)
Anyway there's a good write up here (and link to a demo project showing the issue):
https://github.com/blueimp/jQuery-File-Upload/issues/457
IE9 (and possibly other IE versions) doesn't allow submitting a HTML form programmatically (neither via form.submit() nor via button.click()), if the containing document has been opened via a Gmail link.