Questions tagged as 'email'

1
answer

Send mail via moon

I want to send a simple email on Lua, I used the example in official documentation , and returns me always nil . Example: -- load the smtp support local smtp = require("socket.smtp") from = "<[email protected]>" rcpt = { "...
asked by 13.07.2015 / 17:56
1
answer

Sending Email with PHP

I have a website where the server has just blocked the email sending from another provider, only allowing the email with the domain itself, I made the change from FROM to an email from my domain and it worked, but the received e-mail appears wit...
asked by 18.01.2017 / 13:46
2
answers

Could not access file: Array and syntax error, unexpected '$ name' (T_VARIABLE) [closed]

I am using PHPMailer to send an email with attachment by a form, my code has no errors, but when I finish the form and press send, it returns an error but that the email was sent. Code: $name=$_REQUEST['name']; $email=$_REQUEST['email'];...
asked by 04.12.2015 / 15:08
1
answer

Implement form, causing the message to be sent directly to my email

I have a contact form on my site. It takes information such as name, email, phone and message. However, this data is displayed only in the administration panel of the site itself. I would like that at the time of contact the code would take the...
asked by 30.04.2015 / 22:47
1
answer

How to send only one spreadsheet per email in VBA and not the whole file using the code below

Option Compare Database Option Explicit Public Const C_Title As String = "ef3.Cinco" 'Metodos Public Sub SendMail(obj As MailClass) 'Nome da classe... Dim appOutLook As Outlook.Application '"Importando" Outlook Set appOutLook = CreateOb...
asked by 26.05.2015 / 23:16
2
answers

Base64 verification?

I'm doing an email application (HapiJS) and found that some emails have text that is encoded for base64, but others do not. In this application I will need to receive emails from all the services (Gmail, Hotmail, ...) and I need to make a met...
asked by 29.08.2017 / 15:51
1
answer

Creating and configuring e-mail in AWS (SES)

I have an application in PHP and I need an email that will only serve to confirm registrations in my system ([email protected]). I was taking a look at Amazon SES, however, I had some doubts: How to create a custom email, such as: no-r...
asked by 22.11.2016 / 18:00
1
answer

Problems with HTML images sent to email

I ran several tests using an image with absolute path. Inside the intranet works perfectly, but in extranet (GMAIL / OUTLOOK) it does not work at all. Can anyone help?     
asked by 12.05.2016 / 04:22
2
answers

Apache Commons Email does not send email using Gmail

Click here to open the repository in the Maven Repository for Apache Commons Email. I have the following code that receives a recipient, subject and message from a form: @RequestMapping(value = { "/email_commons/send" }, method = RequestM...
asked by 29.10.2015 / 14:02
1
answer

Sending SMTP mail in WordPress via server with self-signed certificate

I have a WordPress Multisite (4.3) on a server where the sending of emails is blocked. To send e-mail, an external server with authentication must be used. By default, WordPress's native wp_mail() veloper function internally uses PHPMailer wh...
asked by 27.08.2015 / 17:45