Questions tagged as 'email'

1
answer

Send email with specific content of each line returned from mysql

I need to send an email telling the user that your request is expired, I'm going to the bank and I'm looking for all the records in this condition, the problem is that the body of the email has to be the content of each line returned. In each e-...
asked by 27.12.2016 / 12:33
1
answer

send email by php using mail ()

I am making a site for an emresa but I can not make the code that sends the email do the so I am using the php mail function <?php $Enviadopor = $_POST['e']; $Assunto= $_POST['a']; $Mensagem= $_POST['msg']; $corpomail= 'Fale Conosco - co...
asked by 25.05.2018 / 20:37
1
answer

Webmail Linux Server

I'm developing a platform and I'll have some email accounts from this platform. As such, I would like to be able to use them via the web directly on the platform, such as www.webmail.example.com . The server I'm using is linux. Do you kno...
asked by 06.10.2017 / 20:06
2
answers

Send HTML email with background image and text over the image

I am making a website where the customer registers his email and when registering he will automatically receive an email with a newsletter. To send this email I'm using PhpMailer <?php require 'PHPMailer/PHPMailerAutoload.php';...
asked by 27.04.2017 / 16:25
1
answer

How to change the FROM parameter of sending mail so that the sending server does not appear [duplicate]

I've used this tutorial as a base, but when I send the message via email (using PHP) it appears as sending server io.wv.pt . Example 1: Example2: PHP code: <?php if (isset($_POST['postsubmit'])) { mail($_PO...
asked by 22.03.2016 / 12:13
1
answer

How to send messages in time intervals to a batch of emails

How can I get the loop to send every 10 emails or every X seconds? I want to prevent emails from falling on the spam list. And how can I make the code read a .txt file with the emails listed and in future a database? <?PHP require_once(...
asked by 12.01.2016 / 04:31
1
answer

Email Marketing other than HTML

I'm trying to email martketing through the WEBMAIL platform - KINGHOST by the hmtl editor But it comes out very different from what is in html. below the html code that is working correctly. <!DOCTYPE html> <html lang="pt-br">...
asked by 21.12.2015 / 01:14
1
answer

Mail Function PHP does not work [closed]

Hello, I have tried to send an email through the PHP mail function, but nothing works, and after a little research, I found a website that said that it was necessary to have a fifth parameter, being it the email that will receive the message, pre...
asked by 11.11.2015 / 18:28
1
answer

Doubt JavaMail - Attachments coming null

I have an application that downloads the attachments that are sent in a certain email and works perfectly. There was a need to do the same thing in another email. Both are gmail. However, when I read the inbox of the second email, all atta...
asked by 23.10.2018 / 02:47
1
answer

How to get Gmail source code using Python3

I am accessing the Email using this code that I have found and adapted: import requests from bs4 import BeautifulSoup form_data = {'Email': 'exemplo@gmail.com', 'Passwd': 'senhaexemplo'} post = "https://accounts.google.com/signin/challenge/sl...
asked by 01.10.2018 / 02:54