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
-
0
votes1
answer454
viewsPHP and Javascript - Sending HTML attachment in e-mail
I created on my client’s website a function that issues an event certificate and sends it by email. How is the function at the moment: private static function setLayoutCertificado(){…
-
0
votes0
answers225
viewsSending email with Laravel 4.2 does not reach recipients
Hello, I am trying to send emails using the Laravel 4.2 but the messages only arrive when the recipient’s email is the same as the one sent. The file configuration mail.php was like this: <?php…
-
0
votes1
answer779
viewsError sending simple email with python
I am learning to send emails with python. Early on, I came across an import error of the methods of the smtplib module, which generated this question: Import error when sending simple email with…
-
0
votes1
answer175
viewsSending email using phpmailer
I am trying to send an email with several variables passed via post. I cannot send the content of the email with all variables. What would be the correct syntax? Below is the code: $name =…
-
0
votes0
answers86
viewsC# Choose Email Box when sending
I was wondering if there is any way to send emails to other inboxes, for example gmail At the moment my code for sending emails is this: using (var smtpClient = new…
-
0
votes1
answer345
viewsMail() -> white attached php file
I created an html page with a modal with a form that sends the data filled in the fields and also sends an attached file. I get the email and the file, but when downloading the file and opening it…
-
0
votes1
answer1009
viewsSend contact to email with Laravel?
This sending all page to e-mail, but does not send the information of input? Controller public function store(Request $request) { Mail::send('template.contato', array ( 'nome' => $request ->…
-
0
votes2
answers35
viewsSending e-mail by Cdosysmail
I have a shipping code for e-mail, I picked up the sender via request form. and put into a variable like this: Dim nome, emailremetente nome = trim(request.form("name")) emailremetente =…
-
0
votes2
answers134
viewsI’m trying to send email with HTML and PHP and I can’t
Well, the thing is, I created a form to send a quote from my client to my client using the site, but do not click the "send" button anything happens and I do not understand why. I’ll leave the HTML…
-
0
votes1
answer68
viewsSystem of scheduling of emails
I have the following problem: A user performs a step of an X test, when he clicks to get the first result I need to create 9 e-mail messages to be sent to the 3-day logo, morning (7:00), afternoon…
-
0
votes1
answer1027
viewsHow to send email form data without using php?
Forms <legend>Login</legend> Login: <input type="text" name="login"> Senha: <input type="password" name="senha"> <p> </fieldset> <fieldset>…
-
0
votes2
answers329
viewsPhpmailer sends email but does not send variable values
I’m making a system to send emails with the contact form data to the administrator. So far so good, I was able to configure everything, send the e-mail, but there’s a very peculiar problem. The…
-
0
votes0
answers122
viewsAdditional emails are not being sent - Phpmailer - $mail->addAddress('[email protected]')
Good night. I have a somewhat curious problem. I have a client where I was hired to maintain his old site. As the same does not intend to update the site now, I’ll manage in the middle of that mess.…
-
0
votes1
answer404
viewsI made this code to send an automatic email to the subscriber in db . The registration is ok, but the email does not go to the client. What is wrong?
php code <?php include "conectar.php"; //comando para iserir dados direto do formulário para o banco de dados $vnome=$_POST['nome']; $vcpf=$_POST['cpf']; $videntidade=$_POST["identidade"];…
-
0
votes0
answers108
viewsSending Email is leaving the attachment path in the body of the email
I’d like some help! I made a class to send emails in my application, where reports will be generated to be sent in PDF and XML format, but the email is being sent with the path of the files in the…
-
0
votes0
answers654
viewsC# Failed to send emails using Smtpclient
I am getting the following error while running the system on the server with port 587: Mailbox not available Error stack: When I change the door to 465 and Smtpserver.Enablessl = true; timeout…
-
0
votes0
answers34
viewsError Request Mail
Could someone give me a hand here? I’m doing an environment check to send a certain email, only the following error is occurring. Could you tell me how to fix this? My code is below public void…
-
0
votes1
answer846
viewsConfiguration of the Web.Config file
I wonder if I can leave the recipient’s email on web.config, if I can, how to deploy. I created a variable and gave the value of the email, but if I need to change I will have to compile dnv, if I…
-
0
votes0
answers490
viewsEmail Confirmation in C#!
I made this form that the user when registering should receive an email in which will have a link to confirm your email by clicking on the link, so the way I did it is not receiving the confirmation…
-
0
votes0
answers21
viewsPhpmail does not receive content within variable
I have a form that should send an email, I created a file called email php. to create this function. ?php $nome = $_REQUEST['name']; $fone = $_REQUEST['phone']; $email = $_REQUEST['email']; $para =…
-
0
votes1
answer1319
viewsVBA to send email
I have a VBA code to send a range as image, by outlook. But he doesn’t always glue the image to the email body, but to some part of the spreadsheet. Is something wrong with the code? thank you Sub…
-
0
votes1
answer175
viewsProblem with HTML code when sending email using Acbrmail
I am using Acbrmail to send a standard Html that is hosted on the Web. I take the Html source code from the Utf8tostring(idHTTP.Get()) and replace the tags needed to send with Stringreplace().…
-
0
votes1
answer95
viewsHow to send an "Email Marketing" in ASP . NET?
At first: I am sending an email using the standard ASP . NET service as code below public class SendMail { public bool SendEmail(MailModel mail, string subject, string body) { try { string…
-
0
votes1
answer153
viewsPHP Mailer - email does not reach the inbox
I started using phpmailer by the very example of the git page, it gives everything ok, echo goes to "message sent", but the message does not arrive in the email box, someone can say why? <?php…
-
0
votes0
answers50
viewsImage I insert into the email body using Tinymce does not appear in the email
I’m trying to send an email with one or more images I uploaded using the tinymce textarea, where I write the email to be sent, I write what I want and upload the image, it appears there but does not…
-
0
votes0
answers69
views -
0
votes0
answers30
viewsMy images in my HTML email are not showing
This problem is only happening in Outlook Webclient.com. I am creating an HTML for an email and some images are not trimming, actually the src attribute is being replaced by a transparent 1x1px…
-
0
votes1
answer34
viewsPHP - Using phpmailer passwords
Working with php Mailer, a question has arisen regarding the use of passwords. I am developing a page with form, and I wanted to know if it is safe to put the email password in the email class…
-
-1
votes2
answers512
viewsphpmailer gets blank screen
By experiencing the phpmailer, only thing it does is show the screen of Browser blank. Has anyone ever done that? Could I have been blocked on the mail server? <?php…
-
-1
votes1
answer856
viewsHow to create a list in Mailchimp, via API?
I want to communicate my site with Mailchimp automatically.
-
-1
votes2
answers906
viewsHow to send email through an HTML page?
How to send an email to a recipient established on a page HTML?
-
-1
votes1
answer2460
viewsFunction in Mysql for sending EMAIL
I want to shoot some email to some clients I have registered in a table, I did not want to develop an application to run this task, I would like to do directly in the data group, is it possible to…
-
-1
votes0
answers61
viewsHow to send email in C#
So much so that I researched, I saw the great difficulty that people have to send email, using the C#platform, so I am here providing the form I found for the realization of this feat.
-
-1
votes1
answer79
viewsIs there a background script/code for email marketing?
I want to develop an email marketing platform and autoresponders such as Aweber, Mailchimp and the like (but much more basic). I searched 'email marketing' on google and found DOZENS of platforms…
emailingasked 7 years, 6 months ago Jonas Martin 11 -
-1
votes1
answer547
viewsEmailing a C#application
It is possible to send an email directly from the application C# without having to use a server? If yes, how to do this? For example, in case the user forgets the password and I want to send a new…
-
-1
votes1
answer54
viewsReply form An error occurred while sending the message!
I have created a form that in the approval environment is responding and going to thank destination page. When I go up to the domain server it is responding negatively. Someone tells me where I am…
-
-1
votes1
answer511
viewsPHP Mailer - Undefined Method 'Subject'
send-contact.php <?php session_start(); $nome = $_POST["nome-contato"]; $email = $_POST["email-contato"]; $mensagem = $_POST["mensagem-contato"]; require_once("mailer/mail-autoloader.php"); $mail…
-
-1
votes3
answers1548
viewsBulk mailing - Phpmailer
Good morning! I have an email marketing system and I am having problems when performing a newsletter shot to a large contact list. (Understand large list as: a list containing over 1000 emails). If…
-
-1
votes1
answer667
viewsError of: preg_replace_callback
Certain precise functionality of sending emails and before sent normally, however, now appears the following message: Deprecated: preg_replace(): The /e Modifier is deprecated, use…
-
-1
votes2
answers138
viewsSend only the data of the fields completed by e-mail using PHP
I have an HTML form, and I’m using a PHP code to send the data via email. However, I would like to send by e-mail only the data of the fields filled, and their respective names. Example: [ ] Nuggets…
-
-1
votes1
answer142
viewsError while sending message
I have a form (which was available on the server) for sending messages, and when doing a test to see if it would work, is returning me an error on the following line: if(mail($to, $assunto,…
-
-1
votes2
answers45
viewsHow to submit form and how to leave without refresh
I’m trying to send my form to my email, but it only returns the message "No Arguments Provided!". I don’t know what I’m missing. And I would also like to know how to send the form and appear the…
-
-1
votes1
answer58
views -
-1
votes1
answer460
viewsHow to set up Class email in Codeigniter 4
I followed several tutorials that I looked for, but I couldn’t work, I don’t know what I’m missing, I’m starting now to mess with Codeigniter and I got version 4. I’m wanting to when fill the form…
-
-1
votes1
answer322
viewspython emailing with several attachments
Good afternoon, I am new to programming especially in python and I am trying to send all the files of a certain folder as an attachment in an email. And digging on the Internet I managed to get to…
-
-1
votes1
answer108
viewsI created a C# email API using smtp google, but I can’t publish it
The API is working properly with google smtp, rescuing data from a page form and sending the email (tested by Postman and running locally), the only problem is that I am not able to publish, I have…
-
-1
votes2
answers53
viewsView php file on the body of an email
I’m using Phpmailer to send emails, I want to encapsulate the content of a php page in the field: $mail->Body, this page that should be included in the body does search in the mail tracking api…
-
-1
votes1
answer37
viewsSend Email formatted Python
Good afternoon, I’m in need of some help regarding python and pandas. I need to generate a weekly ranking from some reports I extract from the system, the data I’m able to query but I need me to…
-
-2
votes1
answer63
viewsSend email at the end of each month
I have a user subscription system, I need to send a notification every end of month warning that the subscription is coming due, the problem is that I don’t know how to make this script run…
-
-2
votes2
answers3801
viewsExcel - VBA - Image in the E-mail Body - GMAIL
Excel VBA - EMAIL using GMAIL Good morning, everyone! I need to send an image in the body of the email, at the moment I am using the code below, as I do to include an image at the end of the text? I…