Questions tagged [email]

Use this tag for questions involving code to send or receive email messages. Posting to ask why the emails you send are marked as spam is off-topic for Stack Overflow. Questions about configuration of mail servers belong on Server Fault.

Electronic mail, commonly called email or e-mail, is a method of exchanging digital messages from a sender to one or more recipients.

Modern email operates across the Internet or other computer networks. Some early email systems required that the sender and the recipient both be online at the same time - a system currently known as Instant messaging. Today's email systems are based on a store-and-forward model. Email servers accept, forward, deliver and store messages. Neither the users nor their computers are required to be online simultaneously; they need connect only briefly, typically to an email server, for as long as it takes to send or receive messages.

Email architecture is rich and varied; you should probably indicate whether your question concerns manipulation, email composition (, , , , etc.), message submission and transport (, ), or a particular mailbox storage and access protocol (, ) or perhaps a particular . There is a large number of additional tags you can use.

Programmers coming from modern protocols such as JSON and HTTP will be surprised to learn about the many layers of standards that they have to work with in order to be able to use 8-bit data, multimedia, Unicode, internationalization, tagged content, etc. The MIME standards in particular should be at least vaguely familiar.

References


Tag Usage

The tag can be used for any programming related problem in implementing features of emailing messages from one client to another. Ask about specific email server related problems at Server Fault, another Stack Exchange website.

Common problems which are not programming-related include

Related Tags

etc

56205 questions
9
votes
8 answers

Can I send email programmatically in iPhone app?

I need to be able to send a pre-formatted email or SMS text message programmatically from within an iphone app. Can this be done? I have looked at apple's MFMailComposeViewController class, but this "provides a standard interface that manages the…
jcpennypincher
  • 3,762
  • 5
  • 27
  • 44
9
votes
7 answers

Spring boot thymeleaf images

I'm trying to develop spring boot application for sendind emails. All is ok But in the template thymeleaf, when I try to add images it display error. This is a snippet of my template.html
Amine Hatim
  • 207
  • 2
  • 5
  • 16
9
votes
1 answer

indirect php.ini configuration per-domain on multi-domain IIS 8.5 with Plesk

I am working on the contact form for the website. This contact form is realised through PHP. I was able to configure my local environment for this to work, but after deploying to production the functionality is gone. From my point of view, the main…
alljamin
  • 719
  • 7
  • 31
9
votes
4 answers

Looking for email to web service api (e.g. push email inbox to webapp)

There are many email marketing/delivery service providers that offer an api to create and send emails: http://postmarkapp.com, mailchimp, etc. Does any one know of a web app that offers the reverse: a service that will parse new emails into more…
user387226
  • 101
  • 1
  • 4
9
votes
2 answers

How and where exactly does the default email client gets set in the registry?

In order to find out what the default email client is, I found the same information over and over again: Look at the default string in HKLM\Software\Clients\Mail. (see for example this related question) However, this seems not to be true for all…
Hatch
  • 565
  • 2
  • 9
  • 18
9
votes
2 answers

reaching Gmail SMTP daily limit

In one of my Rails applications I'm sending emails through the Gmail SMTP server and everything just works, mails are not going to spam and so on ... But there's one thing that concerns me, the 500messages/day limit the SMTP has, currently I'm over…
jpemberthy
  • 7,243
  • 6
  • 41
  • 51
9
votes
4 answers

Could not connect to SMTP host: smtp.gmail.com, port: 587; nested exception is: java.net.ConnectException: Connection timed out: connect

Here is the code of the application. I have been trying to run this using eclipse IDE. I also added all the required java mail jar files namely dsn.jar,imap.jar,mailapi.jar,pop3.jar,smtp.jar,mail.jar. But it gives the following error Could not…
zainab rizvi
  • 93
  • 1
  • 2
  • 5
9
votes
2 answers

Sendgrid: Send distinct mails to different recipients in one request

Tried using personalization with substitution like %body%. However, I get an error saying Substitutions are limited to 10000 bytes per personalization. Basically the whole body would differ recipient to recipient. Is there another efficient way to…
Shyamal Parikh
  • 2,680
  • 3
  • 27
  • 66
9
votes
4 answers

Verified email not sending through Heroku/Mailgun

I have Rails app on Heroku. It has a custom domain, and I've tried to set up email sending through Mailgun. I've installed Mailgun as an add-on through Heroku, and I've gone through the steps Mailgun gives to "verify" my custom domain. If I run…
lostphilosopher
  • 3,723
  • 4
  • 24
  • 37
9
votes
0 answers

AppleScript email with rich content on OSX 10.11 (El Capitan)

I am trying to send styled text email through AppleScript via default mail client. It seems new version of OSX is not able to recognise the HTML content set inside. Is there any workaround for 10.11 (El Capitan)? Solution is working pretty much fine…
9
votes
1 answer

How to send mail via SMTP and get it by using Qt?

As I unserstand I should use QTcpSocket class in order to send a mail, and QTcpServer class in order to listen the connection and get the mail. But as I am a begginer in this area I need an example that demonstrates a simple transaction. Please give…
Narek
  • 35,407
  • 69
  • 202
  • 359
9
votes
2 answers

Send an Email Using React.js + Express.js

I have built a web app using React.js in ES6. I currently want to create a basic "Contact Us" page and want to send an email. I am new to React and just discovered that I cannot actually send an email using React itself. I'm following the tutorial…
felix_xiao
  • 1,550
  • 5
  • 20
  • 27
9
votes
2 answers

Gmail not executing CSS in html mail (svnspam)

I am trying to setup svnspam. The setup and configuration went fine. But when the mails are sent to my Gmail id, they do not have the coloured diffs. Poking into the original mail through the Gmail view original interface I get to see the CSS…
Quintin Par
  • 14,646
  • 27
  • 87
  • 142
9
votes
2 answers

How is a /@ url found in spam able to be resolved?

I recently received an email containing the following chunk (don't click!):
Neal Fultz
  • 8,413
  • 36
  • 49
9
votes
1 answer

ASP.Net MVC background threads for email creation and sending

I'm looking at postmarkapp.com to handle the sending of email from my asp.net mvc 2 application using the .net library that they provide: postmark-dotnet library In their documentation they mention that sending emails w/ attachments can take some…
jrob
  • 522
  • 1
  • 5
  • 15
1 2 3
99
100