Top "Email" questions

Use this tag for questions involving code to send or receive email messages.

Sending Email in Android using JavaMail API without using the default/built-in app

I am trying to create a mail sending application in Android. If I use: Intent emailIntent = new Intent(android.content.…

java android email android-intent jakarta-mail
Validating email addresses using jQuery and regex

I'm not too sure how to do this. I need to validate email addresses using regex with something like this: […

regex validation email email-validation
How to send email in ASP.NET C#

I'm very new to the ASP.NET C# area. I'm planning to send a mail through ASP.NET C# and …

c# asp.net email smtp
How to send emails from my Android application?

I am developing an application in Android. I don't know how to send an email from the application?

android email
Sending a mail from a linux shell script

I want to send an email from a Linux Shell script. What is the standard command to do this and …

linux email shell sendmail
Send Email Intent

Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/html"); intent.putExtra(Intent.EXTRA_EMAIL, "[email protected]"); intent.…

android email android-intent
embedding image in html email

I'm trying to send a multipart/related html email with embedded gif images. This email is generated using Oracle PL/…

html image oracle email mime
send mail from linux terminal in one line

I know there is the command mail in linux to send emails via command line. How can I send an …

linux email
PHP mail function doesn't complete sending of e-mail

<?php $name = $_POST['name']; $email = $_POST['email']; $message = $_POST['message']; $from = 'From: yoursite.com'; $to = '[email protected]'; $subject = …

php html email
How to send email attachments?

I am having problems understanding how to email an attachment using Python. I have successfully emailed simple messages with the …

python email