|
Using ASP.NET forms authentication, how would you accept an e-mail address and password, use the e-mail address to lookup the username, then log them in with the looked up username and password?
We have this card system which has employee numbers, but...
Started by Dr. Zim on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This will log them in without requiring them to enter their user name, as ... .
If the user passes, call FormsAuthentication.RedirectFromLoginPage.
Just put your own text boxes there and perform your own authentication logic .
Don't use the log in control.
|
|
I have a web app that only registered users can use, therefore I should have a valid e-mail address for the creator of the message.
One part of this web app will allow a user to create and send a e-mail message to an e-mail address that the user enters...
Started by Richard West on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't think return-path would help in every instance ... .
This solution would work in most cases.
You could set up windows service on your server to periodically check BadMail folder and parse the bounced messages and resend them to the original sender .
|
|
Is it possible to e-mail a webpage to e-mail address. I dont mean the link of a page. I mean the actual webpage in html forms so that the webpage can be viewed in an e-mail.
Started by Joe on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
In IE8 : Page -> Send.
Outlook, Microsoft Outlook Express, or other HTML-aware e-mail programs.
|
Ask your Facebook Friends
|
How do you get the Android's primary e-mail address (or a list of e-mail addresses)?
It's my understanding that on OS 2.0+ there's support for multiple e-mail addresses, but below 2.0 you can only have one e-mail address per device.
Started by Seu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
But maybe these links may help you:
AndroidGetAccount - a post about some digging in the code with regards to the GoogleLoginService Android Issue 1073:Google Auth Tokens should... .
This is quite the tricky thing to do in Android and I haven't done it yet .
|
|
There's some legal that the boss would like added to all outgoing e-mail. Without creating a signature and relying on users to remember to add it to their e-mail, can all outgoing e-mails have a signature appended to their e-mail?
Started by SnOrfus on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
There are some downfalls to this method
Signature will be applied to ALL emails... .
You can push out a script via group policy to generate a signature on the client machine and then force its use - assuming you are using outlook .
There are a few ways to do it.
|
|
How we can store the e mail id into a database? i mean which datatype is used for storing e mail id's.
Started by Dilse Naaz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I would also suggest that you encrypt the email addresses, using an algorithm... .
Type VARCHAR.
There really isn't any reason to store an email address as anything other than a text string .
The natural choice would be a VARCHAR or the equivalent in your DBMS .
|
|
I want to get the total number of all valid e-mail address in a database, but I also want the total to be unique e-mail addresses. Is this possible with mysql alone?
Started by jwzk on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can select all unique e-mail with a distinct.
You can't check if an e-mail is valid with mysql.
|
|
I need to send e-mails from my application. But, instead of sending the e-mails directly from through SMTP, I'd like to send it through Microsoft Outlook. So...
How to Generate an E-mail Message in Microsoft Outlook Outbox in VB6?
Started by Daniel Silveira on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
OlMail.To = olItem.Email1Address olMail.Subject = "About our meeting....
Dim olMail As Outlook.MailItem Set olMail = olApp.CreateItem(olMailItem) ' Fill out & send message.. .
Send a message to your new contact.
This support page from Microsft has examples.
|
|
Which feed aggregators, besides FriendFeed, allow RSS and e-mail as input and output channels?
That is, allow to suscribe external RSS feeds and to write a post by e-mail, and allow to be notified both by RSS feed and by e-mail?
Started by Toc on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Google Reader with Gmail should do the trick.
Take a look at Yahoo pipes I believe you can add those pretty easily .
|
|
Can I force users to make unique e-mail addresses in django-registration?
Started by DJPython on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Django-registration has several forms included in the source – one .
If the e-mail address a unique e-mail address.
It should suffice to create your registration form from your user model .
|