Questions tagged [sendmail]

DO NOT use as a general tag for sending email. This is about "sendmail", the general purpose email routing facility that supports mail transport via TCP/IP using SMTP

sendmail is a popular Unix-based email routing facility that makes use of and supports the transfer and delivery of email via the Simple Mail Transfer Protocol (SMTP).

sendmail exists both as free and open source software and as a commercial project, called Sendmail.

Tag usage

The tag sendmail can be used for all programming related problems. The tag can also be used for setting up a simple mail server. Please note that https://serverfault.com/ is another Stack Exchange website where you can ask especially configuration specific problems.

2991 questions
4
votes
1 answer

Mailchimp for dummies (php)

I have a home made php script that can send an email. Very simple : $html = "hello"; $to = "johndoe@gmail.com"; $from = "me@server.com"; sendMAIL($from, $to, $html); How can I replace those lines to use Mailchimp engine? I have a…
jrm
  • 885
  • 5
  • 12
  • 20
4
votes
1 answer

Pyramid sending mail: pyramid_mailer or marrow.mail

I'm interested in adding outgoing email support to a Pyramid-based web-app. I'm aware of pyramid_mailer and marrow.mail (formerly known as TurboMail), with pyramid-integration example here. There is a similar SO question, but it doesn't quite give…
Matt Feifarek
  • 510
  • 2
  • 8
4
votes
0 answers

A Docker IMAP server for repeat-testing INBOUND email? Reverse mailhog?

Woo-hoo! Thanks that we have mailhog for reliable Docker-based testing environments for outbound mail ... allowing us to easily debug mail-sending services without bothering production users ... ... but what about inbound emails? On one of our…
Mike Robinson
  • 8,490
  • 5
  • 28
  • 41
4
votes
0 answers

How to view Cid image reference in html body section?

I am using sendgrid inbound parse to converting emails to tickets in our system , in this case if user send mail with inline images then , send grid using cid references in image src tag as like below html code. "html": "
Here's an…
vijay
  • 701
  • 2
  • 12
  • 26
4
votes
2 answers

Linux sendmail command not sending mail while in a cron

I'm trying to run a sendmail command in a Red-hat Linux environment on a bash shell script through a cronjob. I can run this script successfully when it is ran manually and every other job within the shell runs correctly other than the mailing…
NeoAer
  • 327
  • 3
  • 15
4
votes
1 answer

jQuery/PHP mail send the easy way?

Ok, to make long story short: JavaScript: jQuery("submit").click(function() { var address = jQuery("#mail").val(); var title = jQuery("#title").val(); var name = jQuery("#name").val(); var mail = jQuery("#email").val(); var…
anonymous
  • 1,511
  • 7
  • 26
  • 37
4
votes
1 answer

SAP Hybris E-commerce : Send Email in CronJob

I have created a CronJob that works perfectly. But I want to generate the sending of an email within this Cronjob. I followed a tutorial on the internet. I start with the creation itemType of ProductsApprovedEmailProcess. then I created…
Rodik
  • 271
  • 2
  • 19
4
votes
4 answers

How can I solve "Connection could not be established with host smtp.gmail.com"?

If I do send email on the my localhost, it works. No error But I try on the staging server, it display error like this : Swift_TransportException in StreamBuffer.php line 268: Connection could not be established with host smtp.gmail.com…
moses toh
  • 12,344
  • 71
  • 243
  • 443
4
votes
1 answer

How can I change email sender's name in django

I'm creating email system in my django project and faced to next question: Send email from custom email sender name, f.e. sending email from gmail(btw it works in my project) requires sending messages only from gmail account, same thing with…
Albert
  • 133
  • 2
  • 10
4
votes
1 answer

PHP mail() fails to send mails | Postfix configuration | Apache 2 | Ubuntu 16.04

First of all, sorry if this is a long post, I'm trying here to gather all the informations (I can recall) that people on other forums seemed to find important. Secondly I apologize if the answer to this post happened to be "obvious", but to make it…
4
votes
1 answer

Mail Composer Issue

Is there a way to get the "from" address of Mail and display it in MFMailComposeViewController? Is it possible? Any way to do that.. Please help....
includeMe
  • 2,672
  • 3
  • 25
  • 39
4
votes
2 answers

Devise confirmation emails are not arriving. How do I properly configure it?

Action Mailer is configured as follows in development.rb: config.action_mailer.delivery_method = :sendmail config.action_mailer.perform_deliveries = true config.action_mailer.raise_delivery_errors =…
Matheus Moreira
  • 17,106
  • 3
  • 68
  • 107
4
votes
1 answer

DSN: Service unavailable sendmail linux

I just installed sendmail on my linux os. I can't seem to receive emails, this is what I see in logs: Aug 10 14:12:10 localhost sendmail[13316]: v7A9CAPC013316: from=root, size=238, class=0, nrcpts=1,…
Danyal Sandeelo
  • 12,196
  • 10
  • 47
  • 78
4
votes
5 answers

How to use pear mail mime

How can you use pear mail mime with google. I found this which lets you use pear mail with google, but not mail mime: http://globalconstant.scnay.com/2009/11/06/sending-email-through-gmail-using-php/ require_once "Mail.php"; require_once…
john
  • 53
  • 1
  • 1
  • 4
4
votes
2 answers

Send Emails From AppEngine Locally

The subject of the post says it all: I want to be able to send emails from AppEngine when it is running locally. As far as I understood from this post: to send emails from Google appengine I have to setup a mail server. Can anyone tells me some easy…
Rafid
  • 18,991
  • 23
  • 72
  • 108