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
2 answers

Azure logic apps 'o365 connector' action 'send approval email' returning null for property 'useremailaddress'. Why?

Azure logic apps 'o365 connector' action 'send approval email' returning null for property 'useremailaddress'. Why? The Azure logic apps documentation for the 'office 365 outlook connector' shows that the 'ApprovalEmailResponse' object returns…
0
votes
4 answers

Is there a good two way hash to convert an email address to a predictable, readable, unix username?

We are working with a number of unix based filesystems, all of which share a similar set of restrictions on that certain characters can't be used in the username fields. One of those restrictions is no "@" , "_", or "." in the names. Being unix…
Anthony Skipper
  • 924
  • 1
  • 9
  • 11
0
votes
1 answer

How can I pull usernames from AD using powershell and the email addresses

I can pull a single username from AD by searching for the email address, but I would like to pull multiple email addresses from the CSV and log them in an output file. I know I need to broaden the search here: mail -eq 'john.smith@example.com' with…
0
votes
1 answer

Split an email address into username, host and domain

I get an email address from the database. I need to split and collect it to protect it. There is a way, but I don't understand how to apply it fully. For example we have an email address me@example.com We split it down: > me > example > com and…
chu
  • 35
  • 1
  • 12
0
votes
0 answers

Regular expression capable of extracting email from strings

So I have those examples: "torvalds@linux.org" "Elon <42069@tesla.com>" "Suzzy@Typo.com " with one regular expression I would like to be able to extract from them…
noisy
  • 6,495
  • 10
  • 50
  • 92
0
votes
1 answer

simple regex for email address validation

I need a regex to exclude certain characters such as 'ç' and also to check '@' sign is present. Can someone help? I am using jquery to do client-side validation using the following expression: (/^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[\w-]{2,4}$/)
jqs
  • 82
  • 3
  • 10
0
votes
1 answer

Add Email addressCollection to, cc, bcc and replytoList

i want to add MailAddressCollection with to,cc,bcc and replytolist of my MailMessage(Net.Mail) my code Like MessageEntity.To.Add(GetMailAddress(TOEmailAddress)); MessageEntity.CC.Add(GetMailAddress(CCEmailAddress)); …
san
  • 1,859
  • 4
  • 26
  • 38
0
votes
0 answers

sed to remove proper email addresses from file

sed '/[A-Za-z0-9][A-Za-z0-9._%+-]+@[A-Za-z0-9][A-Za-z0-9.-]+\.[A-Za-z]{2,3}/d' emails.txt is supposed to remove proper email addresses from emails.txt file. But it does not. Please help me...
0
votes
0 answers

Parse email address only without name

When using Email library, is there a way to get the internet email address without the name, so for "Jon Doe", how can I just get jon.doe@gmail.com. I am loading a mime message from file with email.message_from_binary_file() and…
kravb
  • 417
  • 4
  • 16
0
votes
1 answer

Is it possible to have a different sender email and configuration email to send email from MimeKit in ASP.Net Core?

I have added code which will send emails to the receiving party. As of now I need to add the same email address in "from" email and "username"(config email) to send the email else it will fail. But I wish to have different "from" email and not…
0
votes
1 answer

Sending email in WSO2 adds spurious forward slash resulting in error 401003

I have been chasing this error for months but cannot determine where it is coming from. I have a fault sequence (not written by me) that sends an email address. The relevant part is (I think):
0
votes
1 answer

How to develope 2 Google App Engine projects on the same PC?

A year ago I used my own personal gmail account to develop my 1st Google App Engine program, I'm still developing and using it, I have 2 apps under this private account. Now I have registered another App Engine app with another gmail account for an…
Frank
  • 30,590
  • 58
  • 161
  • 244
0
votes
1 answer

MySQL ORDER BY rotating through values

I have a a table containing a list of email addresses. I want to select a subset of the email addresses but I want the ORDER BY statement to rotate through the domain portion of the email address, feeding them every other one. Example…
syntax
  • 21
  • 3
0
votes
1 answer

I'm having trouble loading email addresses from the Phone's contacts

I am trying to generate a list of emails from the phone's contacts but I have having trouble specifically getting emails. I can get names and phone numbers but not emails. The ArrayList sizes are both 0 at the end of the loop. Can anyone spot what I…
NotACleverMan
  • 12,107
  • 12
  • 47
  • 67
0
votes
1 answer

alter email address in DB to render it un-deliverable

I need to alter email addresses of users to render them undeliverable (not ever a real address), however it needs to be reversible so that the original is visible or at least retrievable (without storing it elsewhere). For example john@example.com…
Rob McFeely
  • 2,823
  • 8
  • 33
  • 50