FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » is possible with own mail server have same results of mailchimp?
Show: Today's Messages :: Unread Messages :: Polls :: Message Navigator
| Subscribe to topic | Bookmark topic 
Switch to threaded view of this topic Create a new topic Submit Reply
is possible with own mail server have same results of mailchimp? [message #186236] Sat, 21 June 2014 11:12 Go to next message
nawfer is currently offline  nawfer
Messages: 34
Registered: August 2011
Karma: 0
Member
add to buddy list
ignore all messages by this user
if I have a server linux, and use for example phplist is possible
to send newsletter in a safely mode, delivered and not how spam

the dfault php mail function isn't good?
is necessary smtp ?
if smtp is better, how to set an own smtp server, the default configuration
isn't good?

I not need big traffic; 5000-10000(at moment) emails/month is sufficient
but would like know if I is possible

to do directly with php mail function, or with smtp or
if is mandatory to use mailchimp


Isn't possible to use php mail function or have a smtp server with good
configuration that can to do all the

work instead of mailchimp or similar?
Re: is possible with own mail server have same results of mailchimp? [message #186240 is a reply to message #186236] Sat, 21 June 2014 13:42 Go to previous messageGo to next message
J.O. Aho is currently offline  J.O. Aho
Messages: 194
Registered: September 2010
Karma: 0
Senior Member
add to buddy list
ignore all messages by this user
On 21/06/14 17:12, nawfer wrote:
> if I have a server linux, and use for example phplist is possible
> to send newsletter in a safely mode, delivered and not how spam

Depends on the spam rules at the receiving MTA, some don't do much spam
filtering, others are quite strict and even drops the mail without
notifying the sender nor the person to whom the mail was sent to.


> the dfault php mail function isn't good?

It works fine. Just see to that the mail don't have what the receiving
MTA thinks i spam.


> is necessary smtp ?

yes.


> if smtp is better, how to set an own smtp server, the default configuration
> isn't good?

There are loads of howto's how to install different MTA on your own
server. Default settings works for sending mail, just receiving which
default disabled.


> I not need big traffic; 5000-10000(at moment) emails/month is sufficient
> but would like know if I is possible

That is quite many mails for a small mail list, over 300 a day. The send
amount depends on your bandwidth. If you send spam, then prepare on
getting up to 1200 notifications a day that you couldn't send the mail.


If you want just a serious mail list, there are mailman, but do not add
users just for you think it's relevant for them, as this is illegal in
many countries and you will most likely be blacklisted too.


--

//Aho
Re: is possible with own mail server have same results of mailchimp? [message #186242 is a reply to message #186236] Sat, 21 June 2014 14:03 Go to previous messageGo to next message
The Natural Philosoph is currently offline  The Natural Philosoph
Messages: 993
Registered: September 2010
Karma: 0
Senior Member
add to buddy list
ignore all messages by this user
On 21/06/14 16:12, nawfer wrote:
> if I have a server linux, and use for example phplist is possible
> to send newsletter in a safely mode, delivered and not how spam
>
> the dfault php mail function isn't good?
> is necessary smtp ?
> if smtp is better, how to set an own smtp server, the default configuration
> isn't good?
>
> I not need big traffic; 5000-10000(at moment) emails/month is sufficient
> but would like know if I is possible
>
> to do directly with php mail function, or with smtp or
> if is mandatory to use mailchimp
>
>
> Isn't possible to use php mail function or have a smtp server with good
> configuration that can to do all the
>
> work instead of mailchimp or similar?
>

set up e.g, exim on your linux.

php mail() will then use that.
I have done this but it is not a trivial exercise.

Ids your linux system domestic or virtual host?



--
Ineptocracy

(in-ep-toc’-ra-cy) – a system of government where the least capable to
lead are elected by the least capable of producing, and where the
members of society least likely to sustain themselves or succeed, are
rewarded with goods and services paid for by the confiscated wealth of a
diminishing number of producers.
Message by Luuk is ignored  [reveal message]  [reveal all messages by Luuk]  [stop ignoring this user] Go to previous messageGo to next message
Re: is possible with own mail server have same results of mailchimp? [message #186247 is a reply to message #186236] Sat, 21 June 2014 15:29 Go to previous messageGo to next message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
remove from buddy list
stop ignoring messages by this user
On 6/21/2014 11:12 AM, nawfer wrote:
> if I have a server linux, and use for example phplist is possible
> to send newsletter in a safely mode, delivered and not how spam
>
> the dfault php mail function isn't good?
> is necessary smtp ?
> if smtp is better, how to set an own smtp server, the default configuration
> isn't good?
>
> I not need big traffic; 5000-10000(at moment) emails/month is sufficient
> but would like know if I is possible
>
> to do directly with php mail function, or with smtp or
> if is mandatory to use mailchimp
>
>
> Isn't possible to use php mail function or have a smtp server with good
> configuration that can to do all the
>
> work instead of mailchimp or similar?
>

It's never *mandatory* to use *anything*.

The php mail() function is OK, but has its limitations. There are other
PHP APIs such as phpmailer, which is much more flexible.

You can set up your own smtp server, but that's not a PHP problem. You
would need to check on what's available for your server.

As for being regarded as SPAM - again, not a PHP problem. Check some of
the email-related groups to get hints on how to get your email through
without it being considered SPAM.

--
==================
Remove the "x" from my email address
Jerry Stuckle
jstucklex(at)attglobal(dot)net
==================
Message by Jerry Stuckle is ignored  [reveal message]  [reveal all messages by Jerry Stuckle]  [stop ignoring this user] Go to previous messageGo to next message
Re: is possible with own mail server have same results of mailchimp? [message #186256 is a reply to message #186247] Sat, 21 June 2014 19:24 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
remove from buddy list
ignore all messages by this user
On Sat, 21 Jun 2014 15:29:04 -0400, Jerry Stuckle wrote:

> As for being regarded as SPAM - again, not a PHP problem. Check some of
> the email-related groups to get hints on how to get your email through
> without it being considered SPAM.

Amazingly, I find that not sending spam helps.

--
Denis McMahon, denismfmcmahon(at)gmail(dot)com
Message by Jerry Stuckle is ignored  [reveal message]  [reveal all messages by Jerry Stuckle]  [stop ignoring this user] Go to previous message
Quick Reply
Formatting Tools:   
  Switch to threaded view of this topic Create a new topic
Previous Topic: for who use mailchimp: google considers the emails received as advertising?
Next Topic: PDO fetch with SQL server
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Mon Oct 14 10:47:27 EDT 2024

Total time taken to generate the page: 0.05408 seconds