Questions tagged [email-address]

An email address identifies an email box to which email messages are delivered.

The universal standard for the format and meaning of an email address today is the model developed for Internet electronic mail systems since the 1980s, but some earlier systems, and many proprietary commercial email systems used different address formats.

201 questions
0
votes
1 answer

rails 2 actionmailer email address alias

I am working with rails 2 . I wanted to know is there a way in ActionMailer to hide/alias the email address?? Also what should be the best approach for sending bulk emails??? Thanks in advance.
S R
  • 674
  • 2
  • 18
  • 45
0
votes
2 answers

PHP Mail $to multiple recipients from database table

query($recipients); foreach($email_list as $row) { echo $row['email'].","; } $to = "?"; ?> Above I have a comma delimitated list of…
Alok Jethanandani
0
votes
1 answer

How do I pull email address?

I'm putting together an eblast via sendblaster where I have a qualified list of email addresses; in the email copy is a link to a web page to look at a listing of products (on a web page) with a button to request bulk pricing. onclick I need the…
user1732206
  • 19
  • 1
  • 1
  • 6
0
votes
1 answer

square bracket characters in email address

When we receive a MimeMessage which contains recipient InternetAddresses containing square brackets, we get 'javax.mail.internet.AddressException: Local address contains illegal character in string' when we call MimeMessage.getAllRecipients(). The…
0
votes
4 answers

Regex for extracing multiple email addresses in PHP

I'm receiving content such as: "Jane Doe" , "John Doe" And I would like to extract the email addresses: jane@doe.com, john@doe.com Currently I have a regex like this: /<(.*)>/ Which gets everything in between…
NightHawk
  • 3,633
  • 8
  • 37
  • 56
-1
votes
1 answer

Git_Bitbucket and Github with a same email address

I have accounts on Butbucket and Github with same email address, but usernames are different. Should I generate the SSH keys or is there any easier guide to serve both plattform without problem? I've tried this guide, but it didn't work for…
hellojun
  • 25
  • 3
-1
votes
1 answer

How to put mailto around email addresses in text string

I am trying to figure out how to be able to select/find and format each email address contained in a piece of text. Example string: Notification: Organizer must notify at least 30 days prior to the event. Provide the event information, including:…
erasmo carlos
  • 664
  • 5
  • 16
  • 37
-1
votes
1 answer

Create mail address out of first name and surname in PHP

For a new project which is done in PHP with the laravel framework we need to give every user an email address out of his first and surname. There will be no user without a firstname and surname. This will be the syntax of the email…
bueny
  • 1
  • 2
-1
votes
1 answer

setDataandType adds a fileprovider path as addres to email

I try to send a text file as attachment. I use the following code private void sendEmail(File attachment, String subject) { Intent i = new Intent(Intent.ACTION_SEND); i.putExtra(Intent.EXTRA_EMAIL, new String[] {…
-1
votes
1 answer

Regex - disallow www in email address

I am using a regular expression to validate email addresses in an online form. A lot of emails are entered as such: www.test@example.com How can I disallow the use of www. using regex? My current…
GiarcTNA
  • 499
  • 2
  • 17
-1
votes
1 answer

Restrict email address to only one domain

I'm currently using below regex to check emails, \w+@\w+\.\w+ but I would like to force the user to use their school domain (mark@college.edu), how do I accomplish this?
Rahm
  • 1
  • 1
-1
votes
2 answers

Remove non-alpha characters before a character from every line of a text file

I have a text file that looks like this: 13foobar@example.com foo.bar3@example2.com qwerty-1@dept.example3.com How can I use sed or perl to remove all non-alpha characters before the @ sign. I.e. the desired output would…
user254173
  • 152
  • 6
-1
votes
1 answer

Indy10 - Encoded words in email address

I have encountered some emails with encoded words in email address e.g. instead of abc it contains: abc <=?ISO8859-1?B?YWJjQGV4YW1wbGUuY29t=?=> I've seen that many email programs have issues with it but a few don't which makes me…
Coder12345
  • 3,431
  • 3
  • 33
  • 73
-1
votes
8 answers

Remove phrases from string

I have a string like this: ..., "test1@test1.com" , "test2@test2.com" , "test3@test3.com", "test4@test4.com" , .... I am exploding everything by , , but problem is that i dont want to have value…
Gntvls
  • 230
  • 4
  • 16
-1
votes
2 answers

How to parse a line for an email address in perl using regular expression?

I cannot for the life of me figure out how to parse an Email Address out of a string using a RegEx. I dont think I can use the Email::Address module, as it did not come with the perl version we were told to download, else this would be quite…
1 2 3
13
14