0
0
0xC0CAC01A2012-02-22 19:54:06
gmail
0xC0CAC01A, 2012-02-22 19:54:06

You need a plugin for gmail.com of the following type.

I have a need to send out a couple of dozen emails according to the list, but so that each email goes separately with the first line like “Dear %respectful%”.
Does anyone know a similar plugin for gmail.com? Well, if not for him, then for any of the mail clients.
Thanks in advance.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
P
Perkov, 2012-02-22
@Perkov

gmail personal or Google Apps for Business? When using Google app, there are such goodies - for example, integration with mailchimp.

C
cjey, 2012-02-22
@cjey

if there is a computer with Linux at hand, then Postfix (or any other mail server) is configured for Relay with gmail in 5 lines. Well, then a simple script.

S
Sergey Savostin, 2012-02-22
@savostin

Perlocode on the knee: Well, in the cycle you call ...
use Net::SMTP::TLS;
my $mailer = new Net::SMTP::TLS(
'smtp.gmail.com',
Hello => 'smtp.gmail.com',
Port => 587,
User => $USERNAME,
Password=> $PASSWORD);
$mailer->mail($FROM);
$mailer->to($to);
$mailer->data;
$mailer->datasend("From: $FROM\r\n");
$mailer->datasend("To: $to\r\n");
$mailer->datasend("Subject: Hello my friend\r\n");
$mailer->datasend("List-Unsubscribe: [email protected]\r\n");
$mailer->datasend("Content-Type: text/plain; charset=utf-8\r\n");
$mailer->datasend("\r\n");
$mailer->datasend("Hello, $name! How are you?");
$mailer->dataend;
$mailer->quit;

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question