Search results

  1. W

    Question about Cron setting section

    Hello! In "Settings->Cron" section I can setup how many email I can send per minute. This settings applys globally to all of my campaigns or for each campaign? I mean I have got 3 campaign of emails, and I setup 30 email per minute in "Settings->Cron". How it will work? Will it send 30...
  2. W

    File is too large. Its size cannot exceed

    you should edit php.ini, you'll find string max_upload_size = 2M or something else, just change it to 200M if you can not find out where is this php.ini file, just try to find it by find / -name "php.ini" on my server it's in /etc/php5/apache2/php.ini
  3. W

    Resend emails to emails with Sending error state in campaing

    Hello! Is it possible to do that? (see subject) I mean this: I have got a campaing (for example 5000 valid email addresses), I start send email to clients at night and at the morning I can see that campany was successfully send, BUT I can see that from 5000 emails there are 2800 emails that...
  4. W

    Validating DNS Issue of SPF records

    You can try to disable signing feature in Delivery server->SMTP->Signing enabled->NO.
  5. W

    Increase email sending speed

    Yeap, there was smtp-server problem. If it will be helpful: exim4 config -> rfc1413_query_timeout = 0s solved my problem
  6. W

    Using multiple SMTP servers

    As I understand rotate IP is server-side function. But I think you can rotate servers by setting "1" in mailwizz->Settings->Cron->Change server at. So each email mailwizz will send via different smtp servers, one by one. As I've tested mailwizz connect to smtp server for each email one by one...
  7. W

    Increase email sending speed

    Thanks! As I can see this problem appears only when I'm using remote smtp, with local smtp account on server there is no problem. Anyway this is not mailwizz problem, maybe with exim4... Will check it. The last question about command: /usr/bin/php -q /var/www/html/apps/console/console.php...
  8. W

    Increase email sending speed

    Hi! I have got mailwizz server with 3 smtp servers. Settings are: 100 emails per min, 100 subscribers at once, pause 10 sec, 200 email before pause, change server every 1 server (one by one). Each smtp server have limit about 2000 email per hour. I have a problem with email sending speed. I can...
  9. W

    base64 encoding

    Yes, for now I can see My SwiftMailer in the list, I checked it in Common settings as default mailer, but it doesn't encode text. =) I can see in your file "MailerMySwiftMailer.php" that it's contain $message->setEncoder(Swift_Encoding::getBase64Encoding()); // THIS CHANGED But if this line...
  10. W

    base64 encoding

    I've created MyMailer.php in apps/common/components/mailer/ , copy-pasted your text in it. Then in apps/common/config/main-custom.php this section looks like ...... return array( // application components 'components' => array( 'db' => array( 'connectionString' =>...
  11. W

    base64 encoding

    I've uploaded your php file to apps/common/components/mailer, but I can not see "My Swiftmailer" in the list, I can see only Swiftmailser, PHP Mailer, DummyMailer -that's all. Tryed to restart apache - nothing changed.
  12. W

    base64 encoding

    I didn't try to add $message->setEncoder(Swift_Encoding::getBase64Encoding()); $message->setBody($params['body'], 'text/html', Yii::app()->charset); But changed $message->setEncoder(Swift_Encoding::getBase64Encoding()); and it works!!! (extention disabled for now) For now HTML version of...
  13. W

    base64 encoding

    Yes, for now double-encoding problem is solved, but html is displaying like plaintext. I mean something like that: <!DOCTYPE html> <html><head><title></title><meta name="charset" content="utf-8"></head><body> <div...
  14. W

    base64 encoding

    Yeap, I can see that for now header contain "Content-Transfer-Encoding: base64" text but situation is the same =( Moreover for now mailwizz make double-encode text: text "Hi there" ->encoded to "SGkgdGhlcmU=" ->encoded second time to "U0drZ2RHaGxjbVU9". And for now headers doesn't contain...
  15. W

    How to keep track of unsubscribers

    As you can see you have 18.2.2015 15.43 space between them is a problem just put them in "...." like this "18.2.2015 15.43" and try to import
  16. W

    How to keep track of unsubscribers

    I think you check that file format is csv (comma-separated) and you can open file with notepad++ or ultraedit and check that columns are really comma-separated "," not ";". Anyway there is a problem in your file structure. Maybe there is text like this ",,,,,,,,,,,,," at the end of the lines. I...
  17. W

    base64 encoding

    Yeap! this script encode plain text and html, But it doesn't work normally, Mail Provider can not decrypt(unencode) base64 text to normal text, because of mailwizz header content-transfer-encoding. I mean, If I send email with body "Hi there", then on gmail I can not see this text, I see encoded...
  18. W

    base64 encoding

    Hi! Is it possible to encode email body via base64 (all html and plain text) using mailwizz? Or is there any workaround? For example, I can see "Delivery server -> PHP Mail" option and if I can place some php-script on the server or somewhere... so.... mailwizz will try to delivery emails via...
Back
Top