Hi I am using COdeigniter framework for my app , i which i am sending email to all our members once by using Email function ,
but on gmail email are goes in spam where yahoo and other are working well for me , is there any solution
Related
How to use different sender address in sending emails in Laravel. What i want is to send some emails from one email id and some mails from second email id but gmail is picking up every time the configuration done in env not from mailable class.
You can't replace sender with Google SMTP service.
Google rewrites the From and Reply-To headers in messages you send via it's SMTP service to values which relate to your gmail account.
GMail does allow sending via different addresses or alias but this is for sending via the GMail web app, see Here
If you own the domain you are supposedly sending from, use the Gmail for Domains , and setup a "myapp#mydomain.com" account.
Or, use another SMTP provider
Currently, I'm using sendgrid as email service in my Laravel applications. I just curious to know can I use my server's SMTP details to send emails, like in WordPress.
Yii2 has this feature I just want it to implement in CodeIgniter for testing purposes. I've already sent emails to gmail on one of my accounts.
Thaks.
I my CI application I want to send email in inbox.
I checked my server IP on http://www.mxtoolbox.com/Public/Tools/Blacklists.aspx & it is not in any blacklist but if i send email to hatmail it goes to junk is there any way to by pass email to inbox?
I have tested both CI email lib as well as PHP mail function but both send email in junk/spam also just send with a text Hello from my gmail id.
I am using Authorize.net AIM on my website to accept donations/payments. Authorize.net automatically sends an email receipt to the customer once they have made the purchase, but I wish to disable this and send an email using my own email receipt template (in .html).
Previously I have sent emails using this format after I have inserted a username and email address into mySQL from a form on my website - it worked great.
I now wish to do this same thing, but instead of inserting information into a database, using the information from their donation (amount, email address, confirmation) to send them an email.
I was using Swift to send the emails. This worked great.
How would I use php to do the same thing but with the information from my authorize.net coding?
You could use Authorize.net's API and SDK and call the GetTransactionDetailsRequest with the transId and pipe the results to your customer's email with your own custom HTML email template.