Questions tagged as 'email'

1
answer

Crontab open external page

I configured a cron on my server to run a php script. Within the crontab I ran the line: curl http://localhost/atualizacoes/check-atualizacoes.php It ran perfectly, but inside that php I have an if that calls an external page, which send...
asked by 20.07.2015 / 16:23
1
answer

Client login with news access credentials

Explanation: I have a customer list in post_type through metaboxes , where the email and password fields exist, and the client name is the_title(); Objective: I need to login with the email and password fields and check...
asked by 19.02.2014 / 21:40
1
answer

Do not send html by email php

I have created a code to send email, however do not send anything html, my code is <?php $email = $_POST['email']; $emailenvio = "[email protected]"; $subject = "Recuperar a senha!"; $img = "...
asked by 20.12.2018 / 13:49
1
answer

ASP.Net and C # - automatic email sending

In the site that I assumed from a client, developed in ASP.Net with C #, there are registered employees with a defined admission date. The registry of these developers is in a SQL Server 2008 database table. I needed to create something (mayb...
asked by 26.07.2016 / 19:38
1
answer

Send email with HTML code

Well, I'm trying to send an email in PHP that is written with CKEDITOR, ie HTML. When the email is sent the HTML code appears in the email, I know it is from the Headers but I already tried to put it huge and none works. Below is my code for...
asked by 21.04.2014 / 12:49
2
answers

Is it possible to send email with xampp from a local server?

Well, from time to time, I find myself in the following situation where I can not test the sites / systems I develop. Almost always, I develop the system on my machine, and then upload it to a hosting server. I'd rather always test everything...
asked by 03.03.2016 / 21:00
2
answers

UTL_SMTP: Sending accents

Hello, I'm using Oracle XE 11.2 to send emails using the UTL_SMTP package, but whenever there are accents in the subject or message, it is replaced by a "?". What I have is the following: I have a procedure that contains the parameters for...
asked by 17.11.2014 / 14:45
1
answer

Maximum character limit of an email address

I want to validate an e-mail field both on the page and in the database, but I do not know what character limit an e-mail can have. Hugs!     
asked by 01.05.2018 / 00:34
1
answer

Problem in Django send_email function

Good afternoon! I have the following code in views.py: def email(request): if request.method=='POST': form = ContactForm(request.POST) form.email = request.POST.get('email', '') form.subject = request...
asked by 01.03.2018 / 17:19
2
answers

Get surplus positions from an array after comparing with another array?

I have a function (in JavaScript) that compares 2 arrays: let diferencas = []; let numD = 0; for (let a = 0; a < dados.length; a++) { if (dados[a].idEmail === results[a].idEmail) { console.log('Repetido!')...
asked by 06.09.2017 / 21:42