In one of my web application in PHP I likes to integrate Amazon Mail system . When user completed the registration process I wanna send a mail and also weekly news letters and all ... Is it possible with Amazon mail service ? I am using GoDaddy hosting plan

link|improve this question

80% accept rate
You acceptance rate is very low! – ThinkingMonkey Jan 9 at 10:48
feedback

closed as off topic by hakre, edorian, Gordon, BoltClock Jan 9 at 10:49

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

up vote 0 down vote accepted

Yes it is possible to use: From: Release: AWS SDK for PHP 1.2.3

Release: AWS SDK for PHP 1.2.3

This release adds support for Amazon Simple Email Service.

The following sample demonstrates how to send an email:

$email = new AmazonSES();

$response = $email->send_email(
    'no-reply@amazon.com', // Source (aka From)
    array('ToAddresses' => 'nobody@amazon.com'), // Destination (aka To)
    array( // Message (short form)
        'Subject.Data' => 'Email Test',
        'Body.Text.Data' => 'This is a simple test message ' . time()
    )
);
link|improve this answer
thanks for the code .. Thanks .. I will go through it and will get back you if any prob .. Thanks again ... – ramesh Jan 9 at 11:42
1  
@rajeeesh visit the link above. You will find more info like Known Issues – ThinkingMonkey Jan 9 at 11:47
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.