Most voted "emailing" questions
Use this tag for questions about sending programmatic emails. This tag should be used in conjunction with the [email] tag if it is specifically related to the programmatic sending of emails.
Learn more…205 questions
Sort by count of
-
2
votes0
answers120
viewsForm redirected to a second page, but I don’t receive the information submitted in the email
I have a form called formulario.html that when it is successfully submitted, the person is redirected to a site thank page called agradecimentos.html. Everything was working fine, but when I go to…
-
2
votes2
answers3368
viewsSend email using ASP.NET MVC
How do I send email using ASP.NET MVC? Do you have an option to send without specifying SMTP similar to mail() of PHP?
-
2
votes2
answers1532
viewsAmazon SES, send unverified emails
I have the domain verified in Amazon SES, but would like to send emails notifications to emails that are not verified. It is necessary to check all emails or there is some setting that exempts me…
-
2
votes2
answers742
viewsError sending email with Javamail
It was working normally. Now when I run the program the following error appears: Could not connect to SMTP host: smtp.gmail.com, port: 465; This is my way public void enviaEmail() { Properties props…
-
2
votes1
answer405
viewsAttach file using Webbrowser Delphi
I am developing a tool to automate the sending of emails from the company, I wanted to know how to automatically load an attachment as in this screenshot Remember that I need to make use of…
-
2
votes1
answer477
viewsImplement form, causing the message to be sent directly to my email
I have a contact form on my website. It picks up information like name, email, phone and message. However, this data is displayed only in the administration panel of the site itself. I would like…
-
2
votes1
answer131
viewsSend e-mail with attachment in Lua
I’m trying to send an e-mail behind the socket. I can send an email with an attachment, but I also want to add text to the email and I can’t. Example of the code: local smtp = require("socket.smtp")…
-
2
votes1
answer823
viewsHow to send Google Chart by email?
What would be a viable solution to send a Chart via email, via PHP? To get the Chart, I use it as follows: google.load("visualization", "1", {packages:["corechart"]});…
-
2
votes1
answer401
viewsSend email to customer to check if there is or not
I made a registration to be entered the Cpf and email, the Cpf I was able to validate straight, to see if it works or not. But when the part comes to know if the email exists...I searched a lot and…
-
2
votes1
answer157
viewsHow do I know if the email was actually sent?
I’m using a code to send email, call the email sending service and choose a particular email that is already configured on the mobile. Everything is working normally, but I want to put one Alert…
-
2
votes1
answer1408
viewsEmail with Phpmailer without authentication?
I am using the following code to send email: <?php require 'libs/PHPMailerAutoload.php'; $mailer = new PHPMailer(); $mailer ->isSMTP(); $mailer ->isHTML(true); $mailer->CharSet =…
-
2
votes1
answer47
viewsSet FROM different from the email you are actually sending. Is it safe?
When sending email via php (phpmailer), I can configure all the parameters of the email, however I see that I can do something like this: <?php // Excerto do código $mail = new PHPMailer;…
-
2
votes2
answers691
viewsHow do I send an email without sending an attachment?
Hello, I have a question: I made a script to send email, but I would like that when sending it the user does not necessarily need to put an attachment (ie leave the sending of the attachment not…
-
2
votes1
answer1252
viewsCreating and configuring email in AWS (SES)
I have a PHP application and I need an email that will only be used to confirm entries on my system ([email protected]). I was taking a look at Amazon SES, however, I had some doubts: How to…
-
2
votes1
answer1821
viewsHow to send an email after user registration has been done? Laravel 5.4
I need that when a user is registered he takes the value of the email field and passes to the function $message->to($request->email) to send the email to the registered user. See how I am…
-
2
votes2
answers2825
views -
2
votes1
answer57
viewsHow to set a Returnpath in SMTP email sending
I’m making a console that sends emails. I need the emails sent with error to return to another email (other than the one sent). I managed to set the ReturnPath in the header email, but it didn’t…
-
1
votes1
answer154
viewsSend email using Netoffice ASP MVC
I am starting to send emails in my application, so I am trying to use the package of Netoffice to send and receive emails. What I am trying to do is: From the account logged in to the local pc with…
-
1
votes4
answers1784
viewsConfirmation of sending email?
I need to send emails to my company’s customers, but I also need to know if these emails have been successfully received. Got some way of doing? Which would be the best? It would be something like…
-
1
votes1
answer52
views -
1
votes1
answer144
viewsMultidestinatary and html email sending solution
Hello, I need a Solution for sending multidestinatary email and with html, I have an email sending code by smtp gmail that works, but there are two problems that I can not solve. Issue 1: Need to…
-
1
votes1
answer128
viewsWhy does email get bad format when putting HTML in the body?
I have a jQuery editor that sends a string in HTML format to my input as follows. <p class="MsoNormal" style="text-align: justify; text-autospace: none;"><span style="font-size: 10.0pt;…
-
1
votes1
answer296
viewsImage Transformation of E-mail Text - PHP and Javascript
On my site (made in PHP and Javascript), I have a routine of sending vouchers (is a hotel client’s site) pro e-mail guest. I wonder if it is possible to turn all the content of the email that is…
-
1
votes2
answers1525
viewsSet up email sending hosting redeHost
I have a website hosted on the network, when configuring it in PHP Mailer, it did not work, I contacted the network support, I was told that PHP Mailer is blocked on their servers, that should use…
-
1
votes1
answer33
viewsHow to send emails in php version 4.3.11?
How can I send emails in php version 4.3.11? I have a website hosted on a server where the php version is this and the function mail() does not work. There is way around the problem?…
-
1
votes0
answers33
viewsE-mail is sent only to the last confirmed/active user
Well, here’s the thing. I was doing some tests of sending Newsletter and I came across a problem. The part of registration/ user insertion is done, working all right. However, I was only sending it…
-
1
votes1
answer230
viewsEmail in PHP does not work
It does not give any error, just does not get the message. Sending normally via a Webmail will normal, follow the form: <form method="post" action="sendMail.php" id="formMail"> Assunto:…
-
1
votes1
answer759
views -
1
votes3
answers751
viewsSend email with dynamic content in PHP
I have a template .html email with +- 700 lines (created on Mailchimp) and need to insert some recovered database values into it (something similar to what the Velocity makes) before sending to the…
-
1
votes1
answer675
viewse-mail
Hello, my code sends the email to my email box, but my "Alert" does not appear when I click send Another problem is that in my inbox the email of the sender that appears is not the email of the…
-
1
votes1
answer529
viewsLaravel Email Sending Configuration 5.1
I need to implement a configuration screen, where the user can set the data to send email as: MAIL_DRIVER, MAIL_HOST, MAIL_PORT, MAIL_USERNAME, MAIL_PASSWORD, MAIL_ENCRYPTION, etc. In this case the…
-
1
votes2
answers583
viewsSend emails with built-in HTML/CSS Cakephp
Good afternoon! I’m trying to do something "simple", I need to send a stylized email, I don’t want to send just text, I need to insert html and css tags. Before working with cakephp I used the…
-
1
votes0
answers31
viewsSchedule email sending after query transaction status
I am creating a page that has a payment module, but when a user makes a payment right after the transaction is approved he receives an email telling him that his transaction has been accepted or…
-
1
votes1
answer184
viewsSending e-mail with mail function
I have a site on the localweb, and the first question is: can I send email without authentication? Good by the way I think not, because despite appearing written "Your email was sent successfully!"…
-
1
votes3
answers2001
viewsError trying to send email
I am trying to send emails (using my Hotmail account) and am encountering the error below: A connection attempt failed because the connected component does not replied r ncorretamente after a period…
-
1
votes1
answer387
viewsG-Mail ignores CSS
Everybody, good afternoon, everybody! The g-mail kind of ignores CSS in the emails I do, it doesn’t even show up in the emails, and sometimes when it does, it changes the class from what I need to a…
-
1
votes0
answers1087
viewsAutomatic e-mail response with phpmailer
Fala galera! I am using phmailer to send email, it is working very well in sending but I would like to know how to make an automatic response through phpmailer itself. Could someone give me a hint?…
-
1
votes1
answer1202
viewsSend Image Base64 to e-mail
I am trying to send an email with an image in Base64. html is going however the image does not. An example of how the message is mounted: <p>Mensagem.</p><br><br><img…
-
1
votes1
answer540
viewsHTML page in the body of the email with Video
Good Afternoon, my company automatically sends an html page inside the body of the email, I was asked to add a video inside that html page. So far so good, I copied the code that youtube generates…
-
1
votes2
answers4492
viewsUse PHP variables in the body of phpmailer’s HTML email
Staff need to send the following message by e-mail using phpmailer: "Hello, [NAME]! There is a new protocol regarding document no [xxx]". I was able to configure everything right, however the…
-
1
votes2
answers978
views -
1
votes1
answer128
viewsPerform a select and return the emails in a list
My question is this: I am studying C# and I’m working on a student registration project (study only). I made a form to send an email in case the student misses school, only I did not implement the…
-
1
votes1
answer663
viewsProblems sending php email
I am trying to send emails to specific lists registered in the database, with the php mail function but the email is not sent. What can be the mistake? Below the script for sending emails: if…
-
1
votes1
answer101
viewsWhile inside mail function
I have the following question: I want to get the results of a While (Basically 10 records), to be inserted inside the mail function. I don’t have a clue how I’m gonna do it, anyone can help me. I…
-
1
votes0
answers51
viewsPHP and Javascript - E-mail when label is clicked
I have a form on my page, and part of it can be printed when clicked on a Print label: <label id="printEvento" class="textDescricaoSobre font13" style="cursor: pointer">IMPRIMIR…
-
1
votes0
answers135
viewsError to VBA to send e-mail
Good afternoon, I am trying to use the function below, however when it opens the outlook gives the following error message "Program trying to send email in its name. If this is unexpected, click…
-
1
votes1
answer91
viewsPython / Django: sending emails resulting in 535 (gmail working)
I have a contact form where I send the message to the system administrator informing him about it. Email configuration information is fully verified and correct. EMAIL_HOST='mail.xxx.net'…
-
1
votes1
answer60
viewsI am unable to send this form to e-mail
I am unable to send this form to e-mail, I followed a tutorial and it did not work! HTML <body> <div class="col-md-6 centro" method="POST"> <img class="imagem" src="AMB.png">…
-
1
votes2
answers81
viewsPHP form without email field
I would like to know a method to send a form who doesn’t have the field email. It will have only three fields: Nome, Telefone and Cidade. However, when sending arrives like this The code I have:…
-
1
votes1
answer1144
viewsSend . pdf, in Base64, by e-mail
I get a string through a API external, which comes directly from the client (I only take care of the website, making it impossible to change the type of information I receive). This string is a .pdf…