Redirect the Email Address Link to their Specific Domain Names - email

I have a question, please anyone out there help me!!
i have an email address like "user#example.com" when i click this email address, it should go to their specific domain name i.e, www.example.com,
same like that if there an email id like "user#gmail.com", this should be automatically go to the www.gmail.com when clicking this email address!!
simply that have to redirect to the domain name after the # symbol?
So, my actual final url will be like this when clicking the above email id links "www.mysite.com/user#example.com"
Please prefer a Url rewrite code for this to be added in .htaccess file!!
Thanks in advance

Related

Generate a dynamic URL within email HTML

I am having trouble finding a solution to this and would love to any thoughts or suggestions.
The overall aim is to dynamically generate a private link within an email, used to register/login users anonymously. Only those with a link will be able to access the app, and they will otherwise remain anonymous (i.e no link to their email address - identified only by the number included within the dynamic link). Obviously, if they share this URL, anyone can log in as them.
I would like to generate some sort of embed code that customers may copy/paste as part of an email template. Ideally, This code would dynamically create a unique identifier for each recipient on delivery. We will not be able to send a dedicated email to do this. For example, a customer clicks 'Generate embed link' within the admin panel. They will be provided with a html string that they may include within their email template, eg:
<html :href="www.myapp.com/customer1/register/batch1/{{dynamic_id}}"></html>
On receiving this email, the link may look like this:
<html :href="www.myapp.com/customer1/register/batch1/7877346"></html>
The idea is that the user could click the link and automatically register/log in using this URL. It is crucial that no one can see this URL other than the recipient, and there is no way of linking the sent email back to the dynamically generated ID. GDPR, bah :(
Hope this makes sense. Happy to hear alternative solutions or limitations here.
Thanks in advance.

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

Is there any url params available for redirect after send an email in gmail url?

I have a link in my web-app for user sending an email. The URL looks like this below :
https://mail.google.com/mail/u/0/?view=cm&to={your#email.com}&fs=1&tf=1
When user click that link, they can compose an email with compose mail view. After a user click the 'send email' button, the page will appear blank.
So my question, Are there any URL parameters that support redirection instead of giving the user blank page after sending email? I couldn't found any documentation for Gmail URL parameters just like view, to, fs, tf. I wonder is there any url parameter for example redirect_to=myapps.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?