Swift Mailer is a library that integrates into any web app written in PHP 5, offering a flexible and elegant object-oriented approach to sending emails with a multitude of features.
0
votes
1answer
13 views
Swiftmailer sending just one email
I have a form which sends the forms contents to an email address, but I now also want to send a response to the email address filled in the form, I tried many different things but only one email gets ...
0
votes
0answers
40 views
Laravel 4 Email not working
I've been looking for the answer for two days and still nothing. I've followed several tutorials where nothing more than just a few config settings are required, but my Laravel 4 app still doesn't ...
0
votes
1answer
34 views
Mysqli fetch array warning, unable to debug [closed]
I am trying to debug a newsletter mailing script for a project I am working on. This used to work perfectly fine with PHP Mailer, however I ended up changing my mailer to Swift Mailer and since I have ...
0
votes
1answer
35 views
How to pass a 2 dimensional array value in a swift mailer setTo function
I am getting a 2 dimensional array value as a result after a for loop.The value is $chunk[$i][$j].And when I passed that value into setTo function,
the error showing as
Warning: preg_match() expects ...
0
votes
0answers
18 views
SMTP Timeout. Using our own server and swiftmailer. How can I increase the timeout? Error included
I'm looping through a list of customers, and sending files to them. The page often times out. Here is the exact error generated, minus my domain name.
Fatal error: Uncaught exception ...
0
votes
1answer
23 views
swiftmailer configuration for more than one accounts in Symfony 2
I use gmail to send mails ,so I config ‘config.yml’ like this
swiftmailer:
transport: %mailer_transport%
encryption: %mailer_encryption%
auth_mode: %mailer_auth%
host: %mailer_host%
username: ...
0
votes
1answer
20 views
Swiftmailer not sending mail in php
error_reporting(E_ALL);
require_once 'swift_required.php';
//Create the Transport
$transport = Swift_SmtpTransport::newInstance('mail.your_domain.com', 25)
->setUsername('name@your_domain.com')
...
0
votes
1answer
32 views
Error When Sending E-mail using SwftMailer
$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, "ssl")
->setUsername('username')
->setPassword('password');
$username = $_SESSION['username'];
$from = ...
2
votes
1answer
42 views
Unable to send E-mails using Swift Mailer
$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, "ssl")
->setUsername('username')
->setPassword('password');
$username = $_SESSION['username'];
$from = $_POST['from'];
...
1
vote
0answers
22 views
Symfony2 Swiftmailer check for settings
When I configure the swiftmailer settings I can't check if the settings are correct.
Now I want to build a console function to check if the settings are correct.
But does somebody know how to check ...
0
votes
0answers
46 views
Swiftmailer e-mail into Hotmail SPAM/Junk - SPF pass, DKIM, signed message
After a lot of researching and testing, the e-mail still coming into the SPAM/Junk folder of Hotmail. This only happens when the receiver, receives the e-mail at the first time. The content of the ...
-1
votes
0answers
31 views
Sending out a mail with postfix to gmail / hotmail addresses [closed]
I'm trying to send out emails with my Postfix server to gmail / hotmail addresses.
This doesn't work. The Postfix mail log says that mails are sent but I never received the email.
Sending out ...
0
votes
1answer
41 views
Easyphp & SwiftMailer 4.3 Unable to send message (PHP / SWIFT)
I've been trying to send an email using SwiftMailer and a gmail account, but it shows me the famous referrer that no SSL is detected
Fatal error: Uncaught exception 'Swift_TransportException' with ...
0
votes
1answer
20 views
Swiftmailer call to undefined method setPassword()
I have no idea why Swiftmailer is giving me an error.
Fatal error Call to undefined method setPassowrd in.. lib/classes/Swift/Transport/EsmtpTransport.php
I have checked the file and it does not ...
0
votes
0answers
18 views
Enable plus '+' sign in return path header on SMTP server (or SwiftMailer)
I am writing a PHP mail script using the SwiftMailer library, and attempting to track bounced emails by including an ID number in the return address like this: bounce+userID@domain.com
Messages are ...
-4
votes
0answers
47 views
Symfony 2 : Swiftmailer email exception [closed]
I am having a problem sending email using swiftmailer in symfony2
Here's my code :
$message = \Swift_Message::newInstance()
->setSubject('Account Activation')
...
0
votes
0answers
99 views
Symfony 1.4 send mail with Swift Mailer in a Task headers already sent
I have a symfony Task that calls a class that ends up sending an email alert with Swift Mailer when some conditions arrises, the problem I am having is that when I run it, I get an oputput in the CLI ...
0
votes
0answers
33 views
Swiftmailer: Does send() command return once message is spooled or once the entire handshake completes?
I have the following very simple code running on a VPS server.
public function processQueue(){
$transport = Swift_SmtpTransport::newInstance('myserver.obfuscated.com', 465 ,'ssl')
...
0
votes
0answers
31 views
How to send emails from a configured server in Symfony 2 using swiftmailer
I would like to send email from a registered server using symfony 2 swiftmailer.
Tried various swiftmailer Configurations in config.yml but had no luck
Thanks for any help
3
votes
0answers
43 views
symfony 2.1 phpunit Swift_Message class not found
I've an issue with symfony and phpunit. Our peoject is growing bigger and bigger. So we decided to activate process isolation for phpunit because the server couldn't stand the amount of tests anymore ...
0
votes
1answer
23 views
Swift Emailer rare behaviour
I have an application developed in Symfony 2. I have a contact form in a bundle that send me a email. It works with this code.
$message = \Swift_Message::newInstance()
->setSubject('Nueva consulta ...
1
vote
2answers
47 views
How can I add a picture in an email which is a html format with SwiftMailer (Symfony2)
I have developed a page for a client, and I have to do a newsletter. I already have the template of the mail and what I want is to insert a picture in those emails.
The code :
foreach($customer as ...
0
votes
0answers
37 views
Get current user for config.yml
I am working on a project where we would like to have sendmail send all emails to the currently logged in user. I know we can do this in the code, but it is a bit ugly.
What I would like to do is ...
0
votes
1answer
50 views
Symfony2 Swift Mailer connection time extremely long - Debug options?
I'm using Symfony 2.1 and SwiftMailer to send out registration e-mails.
The process handling for this takes abouts 20 seconds if there's an email to be send. Meanwhile the website is loading. This ...
0
votes
2answers
40 views
Swiftmailer successfully sends but no mail received
I have made a simple contact form and use swiftmailer(with symfony2) to send and email.
Everything is fine when I'm using gmail account but on production it has to be a noreply address in website ...
0
votes
1answer
36 views
Swiftmailer and PHP Variables
I have the following code:
<?php
include 'swiftmailer/lib/swift_required.php';
//*** Create the Transport ***
$transport = Swift_SmtpTransport::newInstance('smtp.My-Hosting', 25)
...
0
votes
1answer
32 views
Swiftmailer single quote / apostrophe in setTo() breaks message sending
I am using SwiftMailer to send emails and I am using the setTo() method to set the email address and the display name
e.g. ->setTo("user@email.com", "User Name")
When the user name contains a ...
0
votes
0answers
40 views
Swift_RfcComplianceException on valid email address, works in Windows not in Ubuntu
I'm running into what appears to be a rather infamous issue with SwiftMailer:
Fatal error: Uncaught exception ‘Swift_RfcComplianceException’ with message ‘Address in mailbox given ...
0
votes
0answers
32 views
Swiftmailer file attachment stops script when input left empty
Ive got the following PHP file which uses the Swiftmailer library handle a contact form on my website. It works OK at the moment unless the file input on the form is left empty, in which case it ...
0
votes
0answers
29 views
swiftmailer contact form required fields
I have built a contact form on a website which is handled by swiftmailer. At the moment it sends correctly with an image attachment and some input fields. How do i make some of the fields "required" ...
0
votes
1answer
43 views
Can an originating address (email) be tied to PHP / Swiftmailer?
My error:
Uncaught exception 'Swift_BadResponseException' with message 'Expected response code(s) [250] but got response [550 Sender Rejected - MAIL FROM must be a valid domain.
Could I have tied ...
0
votes
1answer
44 views
Swift Mailer: Multi recipients option doesn't work
Although there are many same questions, none of the solutions worked for me. Mail gets sent only if there is only one recipient otherwise generates error below. Also I'm only sending internal emails, ...
1
vote
1answer
87 views
Issue sending emails with swiftmailer bundle - Symfony2.1
Trying to send an email with swiftmailer, with configuration of:
transport: smtp
host: smtp.emailsrvr.com
user: *user*
password: *password*
I'm trying to test this from localhost, using ...
0
votes
0answers
30 views
Swiftmailer not sending emails Symfony2 with one domain
I am configuring a some mailing things into my Symfony2 project and I am having some trouble.
If I use one of my companies' email domains, Swiftmailer does nothing, it says that mail has been sent ...
1
vote
0answers
46 views
When using Swift Mailer, how can I get control over the line breaks in the text/plain version of the message?
I'm using Swift Mailer (version 4.1.7, which shouldn't matter for this topic), and I have a very basic question.
A "modern" email message typically repeats the content twice -- once in HTML, which ...
1
vote
0answers
30 views
How to define delivery_address for additional mailer server in dev environment?
I'm using two swiftmailer services, one as a spool and one for instant mails, as described here How to define an additional mailer service to use the spool and send instant emails in Symfony2
But ...
0
votes
1answer
117 views
SwiftMail SMTP Error
I am trying to use the standard Swiftmail SMTP connection for Mandrill, which is located here:
http://help.mandrill.com/entries/21746308-Sending-via-SMTP-in-various-programming-languages
I am ...
1
vote
2answers
81 views
Swiftmailer remove attachment after send
I am trying to remove the attachment files after sending an email with Symfony 2.1 and Swiftmailer but if I delete the file before returning a response object (a redirect), the email does not send.
...
0
votes
0answers
32 views
Swift Mailer does not send when the from address domain is similar to hosting domain
Swift Mailer does not send emails when the domain part of the from address is similar to the host domain. But mail() function sends out the emails with no errors with the same address as the from ...
1
vote
1answer
246 views
Change Mailing Transport in Laravel 4
It appears that L4 is hardcoded to use SMTP with Swiftmailer. How can we change the transport type to sendmail?
0
votes
1answer
47 views
SwiftMailer Sends Mail Very Slowly
I am developing my php website on my own computer using WAMP Server. I am using the Swiftmailer to Send mail. It sends the Mail, But it works very slowly. It sends a single mail in about 8-12 seconds.
...
0
votes
4answers
63 views
Best STMP Configuration for Preventing Mails to Go to SPAM
I want to send mails through my php application using swiftmailer. But I am confused. I do not want to let my mails go into the SPAM folders. So, Some one has told me to Configure the STMP correctly. ...
3
votes
1answer
147 views
Sending internal emails
CODE:
$from = $_GET['from'];
$to = $_GET['to'];
$headers = "From:" . $from;
mail($to, 'PHP mail() function', 'Coming from PHP mail() function', $headers);
echo 'Check your inbox for PHP mail() ...
0
votes
1answer
99 views
add inline image to a message sent with swiftmailer
Please excuse my php but, Im using Swiftmailer to send emails from a clients website. They've requested to add an image or two as a signature etc and so looking at the swiftmailer spec here
...
2
votes
5answers
172 views
Alternative to PHP mail (reason: spam)?
I've had this huge problem with the mails sent from my domain, that are being caught by Gmail's spam-filter. The mails that I'm sending, are invoices to customers who haven't received anything from ...
0
votes
0answers
72 views
PayPal IPN cannot send email using Swift Mailer
I have the below code so far. All is working well, paypal transaction goes through but email is not sent. It uses Swift Mailer to send email. Swift Mailer settings are configured correctly. Please ...
0
votes
0answers
56 views
Getting swiftmailer to work
Im new to PHP and trying desperately to get a simple contact form on my website to work using swiftmailer. So i have the library installed to the right location, and the form opens like this:
...
0
votes
1answer
127 views
Internal server error using Swiftmailer on Silex
I'm working on a Silex project and I'm trying to send an email using the Swiftmailer provider but always get an internal server error(500).
Registering:
$app->register(new ...
0
votes
0answers
49 views
Using Swiftmailer for form with image attachments
I am trying to set up a form on my website that sends a bunch of details to an email address. The usual stuff, like name, email address, message and some other inputs, but I also need to attach some ...
0
votes
1answer
80 views
Using swiftmailer and sending attachments
I am trying to modify a script to send a email with an attachment. It works right now but all the fields are required and I was wondering what I am missing to make it so the fields are not required.
...


