Questions tagged [mail-sender]

100 questions
31
votes
6 answers

How to change sender name (not email address) when using the linux mail command for autosending mail?

Mailbox shows the sender name as "Apache", because the mail I am autosending is being sent from a Perl CGI program. How do I change it to something else?
therobyouknow
  • 6,604
  • 13
  • 56
  • 73
7
votes
4 answers

Send e-mail over smtp and change the sender's name

I am sending e-mails over smtp in golang, which works perfectly fine. To set the sender of an e-mail I use the Client.Mail funtion: func (c *Client) Mail(from string) error When the recipient gets the e-mail he sees the sender as plaintext e-mail…
Kiril
  • 6,009
  • 13
  • 57
  • 77
6
votes
1 answer

SPF + DKIM pass and DMARC fails

The domain s****g.nl has the following DMARC record: "v=DMARC1; p=reject; rua=mailto:postmaster@s****g.nl, mailto:dmarc@s****g.nl" A valid SPF record for the sending mail server and none DKIM record. The domain fo***de.com has a valid SPF and…
5
votes
1 answer

Spring doesn't work sending smtp: mail com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.0 Must issue a STARTTLS command first

I am triying to send a mail from my spring app what was generate with jhipster 1.1.0. and my spring-boot version is 1.5.2 I have this code: Application-dev.yml: spring: mail: host: smtp.gmail.com port: 587 username: myuser@gmail.com …
Kara
  • 145
  • 1
  • 8
4
votes
1 answer

How To Make Dynamic Link On Email in ASP.NET Core

I want to ask something. I build a simple email sender using asp.net core 2.0 and I want to send an email with a link to redirect the receiver into my web page like email authentication but I don't know how to make the callback URL. I use :
Dewa Dwi
  • 105
  • 2
  • 9
4
votes
1 answer

Connection refused when sending email using Scrapy mail module

I am trying to send email after scraping using Scrapy, but I get this error: 2017-02-25 12:44:44 [scrapy.mail] ERROR: Unable to send mail: To=['@gmail.com'] Cc=['@gmail.com'] Subject="Test" Attachs=0- Connection was refused by…
Aminah Nuraini
  • 18,120
  • 8
  • 90
  • 108
3
votes
2 answers

Python - send mail to GMAIL with embedded images

I have the following script that successfully sends mails with images attached to hotmail. The problem is that if I send the same mail to GMAIL the images are attached in the mail and NOT embedded in the HTML. why that happens? how to fix it? As…
lolo
  • 646
  • 2
  • 7
  • 19
3
votes
1 answer

Change a notification mail sender name in GitLab 11.4.4-ee

I configured GitLab on Google Cloud Platform to send mail. This is the configuration root@mojlab:/home/d# cat /etc/gitlab/gitlab.rb ... nginx['listen_addresses'] = ["0.0.0.0", "[::]"] gitlab_rails['smtp_enable'] = true gitlab_rails['smtp_address']…
trzczy
  • 1,325
  • 2
  • 18
  • 43
3
votes
1 answer

choose account in outlook when send mail via excel vba

I want to send mails from a specific account in outlook from VBA in excel and Im stuck with my code, i went over and over the forums but it still doesnt work I show you my code if anyone could help me it would be very very nice Sub SendMail() Dim…
salom
  • 93
  • 1
  • 1
  • 11
3
votes
3 answers

Is JavaMailSenderImpl of spring thread-safe?

I am using JavaMailSenderImpl from spring to send emails in my web application. I have created only one instance of this (Actually it is used by another object which is created using spring beans and is a singleton). So the question is, Is…
kiran
  • 396
  • 3
  • 11
3
votes
1 answer

Java mail sender sends duplicate emails

I have an issue with JavaMailSender which sends double or triple messages. In Controller: while(size > 0) //# of emails I want to send, for example 5 { Item item= itemRepository.findFirstBySentFalseAndValidTrue(); //getting only emails that are…
Damian
  • 461
  • 1
  • 7
  • 18
3
votes
2 answers

How can I extract the canonical email address given an address that includes BATV or other tags?

Our webapp has a feature that allows users to import data by sending emails to a specific email address. When the emails are received by our app, they are processed differently depending on who sent them. We look at the "sender" field of the email,…
Joshua Carmody
  • 13,410
  • 16
  • 64
  • 83
2
votes
0 answers

How to use laravel MustVerifyEmail (email verification) on a custom model

Ok so i have a model named SiteEmail. Basically i have a model named Site and it can have multiple emails associated with it, which has to be verified by sending an email. I want to use the laravel email verification that ships with laravel which i…
Ashok
  • 369
  • 5
  • 16
2
votes
1 answer

skpsmtpmessage sending email function is not working correctly?

So I downloaded the skpsmtpmessage pod and installed it to my project. I have a file called MailSender in the project that looks like: import Foundation import skpsmtpmessage class MailSender: NSObject, SKPSMTPMessageDelegate { static let…
nickcoding
  • 305
  • 8
  • 35
2
votes
0 answers

i can't send mail from smtp.gmail.com SMTP CLIENT from asp.net with c#

This is my mail sending code..... string fromAddress = "from@abc.gov.in"; string toAddress = "darpansamani@gmail.com"; string fromPassword = "*********"; string subject = "Citizens Forum"; string body = "Demo Body"; …
1
2 3 4 5 6 7