php - Mail::send() with 'mail' driver is not delivered -


so started using laravel, , right want send email mail::send() method without using smtp. wan't send email anonymously because school project, simple , don't want share password.

if enter gmail account, works perfectly, when set mail driver 'mail' uses default php mail() function, not delivered.

i tried unsetting values in mail.php (username, pass, host, port , encryption) without success.

also, i'm using localhost (mamp) send email, don't know if maybe issue.

ps, not in spam either. (wouldn't matter if did since it's school)

mail() requires mail transport agent (like unix sendmail or postfix) present , configured on server. function doesn't "send emails anonymously", passes message mta (if present) , returns boolean value indicating whether accepted delivery or not.

if it's school project you're working on, stick gmail, because setting mta tedious work.


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -