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
0answers
4 views
sending mail using swiftmail
I am learning to use swift mail to send mail. I tried below code to send mail even the php success but didn't send any mail to my hotmail. I tried using 465 and 587 but both not sending mail to my ...
0
votes
0answers
16 views
PHP Email Send Swift
SWIFT EMAIL ERROR
I have swift set up to send emails but have come accross a problem concerning an email address that it cannot send to despite the fact that it exists.
In my create message section ...
0
votes
0answers
5 views
to get swiftmailer generate multipart/related instead of multipart/mixed
I use swiftmailer to generate a message with:
- an html or plain text body or both
- an inline image attachment
The resulting email is not correctly displayed by Roundcube webmail: the inline image ...
0
votes
0answers
23 views
Swiftmailer select emails from text file
Im new here and i have a question. I want to make swiftmailer batchsend option working from a text file, not mysql. Basically, i need to select emails with swiftmailer from a text file, for sending. ...
0
votes
0answers
39 views
Swiftmailer symfony2.2 always sent 0 emails
I have the following swiftmailes config
# config.yml
swiftmailer:
transport: stmp
host: mail.domain.com
port: 25
username: myuser
password: mypass
spool:
...
1
vote
0answers
13 views
Send multipart/alternative mail with Swift Mailer
I can't send multipart/alternative with Swift Mailer (I haven't found any reference, so maybe I can't use this function), this is my code:
$file[1]=html_entity_decode($file[1]);
//Prepare plain/html ...
0
votes
1answer
22 views
Get swiftmailer to ignore bad emails in php
I have a maximum of 5 emails that are to be sent through Swift Mailer but I never know how many of them will be invalid.
The emails that are invalid =" "
I was wondering if there was a way to get ...
0
votes
1answer
17 views
SwiftTransport Exception : Expected response code 220 but got code “421”
I am using FOSUserBundle with Symfony2 , a few days ago the sign up processes works fine, then suddenly I get the folowing error when signing up :
Expected response code 220 but got code "421", ...
0
votes
2answers
22 views
SwiftMailer: can't open .tar.gz archives on Linux
I downloaded a couple of versions from
http://swiftmailer.org/downloads/archive
(tar.gz) but the archive manager says
tar: This does not look like a tar archive
tar: Skipping to next header
tar: ...
0
votes
1answer
44 views
symfony 2 swiftmailer Cannot send message without a sender address
Trying to configure SwiftMailer to send messages with gmail.
Here is my configuration:
# Swiftmailer Configuration
swiftmailer:
transport: gmail
host: ~
username: ...
0
votes
0answers
28 views
Symfony2 swiftmailer file spool: Mails stay in status sending with attachments
I send my emails in symfony2 with the file spool. Now I wanted to add some attachments to the mails. The mails stay with the filename "xxxxxx.sending". If I remove the spool and send them directly ...
0
votes
1answer
36 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
104 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
38 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
45 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 ...