I am working on a Application with firebase. I want to validat a users email, but since Firebase doesn't allow to change the verification message (To help prevent spam, the message can't be edited on this email template), i can't use this. I don't want to serve English text to my users.
Is there a way to get/generate a custom ActionCode? I used this tut https://firebase.google.com/docs/auth/custom-email-handler it might solve the problem is i can get the temp actioncode somewhere.
I found applyActionCode and checkActionCode (seems the same) but not something like createActionCode
Ask for it...
Nowadays the best procedure (with just 1 step) was for us to develop an HTML file with the exact content for each of your templates (Email-Verification and Email-Change, including even the snippets %...% in the right place) and send them as attachment in the Troubleshoot form as mentioned by Alfonso in the comments of this question.
If you send the exact email HTML template file, you leave Google's people with no questions for spamming purposes other than quickly validating your HTML content and approve.
you can change the language for all the templates, at the bottom...
also you can edit manually the body and the subject for the forgot password template
You can customize the email validation template text as you wish? Right?
Related
I am trying to protect the "mailto" code function on a website from bots and spammers. In other words, I would like to create a button (like "Contact") that on clicking displays an email address, but the code is protected from harvesters.
reCaptcha has been suggested. Can it serve that purpose?
I have been to https://www.google.com/recaptcha/ where I created an "account" but I cannot figure out how to use it.
If I am asking the wrong question in the wrong place, please say so. (I am pretty good with HTML and CSS, but reCaptcha has me stumped.)
sjahan, Thank you.
stackoverflow offers other solutions that I just found here:
Protect e-mail address with CSS only
I will start there. But I have bookmarked this page.
Recently I have been looking into some different API for signing documents online, what I am looking for is one that has a customisable Iframe to avoid breaking the already established style of our website.
I would have wanted to know if Docusign proposes this kind of service.
For example, if we would just have the pdf file and a spot to sign, that would be perfect.
I hope I was clear enough with my question, thanks for your possible answers.
EDIT: I would have also liked to know if there is a way for the signer to not have to enter his personal information/sign in. One where that information is entered by us when the procedure is created.
Is it also possible to change the size of the zone where the signer signs, I was some other signing API's proposed it, but haven't seen it on Docusign.
How can I also change the language of the Iframe and disable the automatic mobile version.
Thanks for spending the time reading and helping me with these questions.
You can use an iframe for the signing when you use "embedded signing" in your integration. This is a common scenario and the signer won't have to log-in.
Even when using an email, most people just click on a link and they don't need to log in to DocuSign in order to sign.
The Docusign Iframe isn't 100% customisable, but you can remove some little extra UI with &noDownloadPrint=true&appname=docusignit, or add &disable_cc_for_selfsign=true to remove the "Sign and Return". From the creation of the Docusign EnvelopeAPI, you can't change the language of the Iframe.
I've used services like 'Add This' for a while but now I need to add a couple of specific bits of functionality to an ecommerce order completion page. It's to work like Amazon's order thank you page where it allows you to post a message to Facebook saying something like 'I just bought a widget on Amazon'.
Equally I'm looking for the equivalent in Twitter.
I've added a bunch of OG tags and share buttons but can't get it to do what I need. From further reading it sounds like I might need to create a Facebook app of some sort and use FB ui to create the link to post to the user's wall. I was hoping to do this without getting tangled up in that level of permissions etc but maybe that's not possible any more?
This is being developed on asp.net C#, in case there's a library that I haven't found in my searching.
Can anyone familiar with this type of development point me in the right direction?
For Twitter, the simplest way is to use Web Intents.
For example, if you want to share the text
I love http://example.com
URL encode the text to I%20love%20http%3A%2F%2Fexample.com and use the Twitter Web Intent URI. E.g.
https://twitter.com/intent/tweet?text=I%20love%20http%3A%2F%2Fexample.com
When the user clicks on that link (try it!) or is directed there by your service, they'll be prompted to share that text.
Currently I have an asp.net website that generates a PDF document of a letter so I can send it to a client. The same website can also email the client if we have a valid email address. My problem is every time I need to update the letter I have to go and update the same thing in the email. Is there an easier way to do this? Currently what we use to generate the PDF documents is a RDLC and for the email it is just hard coded in the project. What I'm wanting is a way that I can export a PDF document and also be able to export the same thing as html code that I can send in the body of an email. I don't want to use 3rd party software or add anything to my project. If anyone has any ideas let me know.
I'll answer with a link to an extraodinarilay simmilar question that has a very good answer Rendering an RDLC report in HTML in ASP.NET MVC
I have a blog in blogspot.
Step (1). Whenever any visitor visit my blogspot blog through Google, the search search string is tracked through a javascript and the search string is saved in another server (say serverX)
Step (2). Now, when another visitor (human/Google Bot/Any downloader/etc..) visits my blog, he/she should be able to see the search string (Saved in ServerX) in my blog (anywhere, be it content or at the bottom of the blog....it doesn't matter)
Well, I can code the javascript and can also write a php code to save the search string...
but i've absolutely NO idea how to do the step (2)
Please tell me how to do Step 2...
Thanking you in anticipation.
I don't think blogspot gives you the ability to edit any of the server-side template files, does it? If so, then it's impossible to do this.
If you really need this feature, you would probably need to use WordPress (an installation on your own server, not the WordPress.com service, as then you would be in the same exact situation as you are with blogspot right now).